Integrate longitudinal high-dimensional data in a data warehouse using the git commit graph to store temporal information and git annex to store large data in a content-addressable fashion.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
554B

  1. install:
  2. @echo "Installing git ommix !"
  3. install -m755 git-ommix /usr/bin/git-ommix
  4. install -m644 example.conf /etc/gitommix.conf
  5. mkdir -p /usr/share/git-ommix
  6. install -m644 functions /usr/share/git-ommix/functions
  7. [ -d /usr/share/bash-completion/completions ] && install -m644 gitommix-completions /usr/share/bash-completion/completions/git-ommix
  8. uninstall:
  9. @echo "Uninstalling…"
  10. rm -rf /usr/bin/git-ommix
  11. rm -rf /usr/share/git-ommix
  12. [ -d /usr/share/bash-completion/completions ] && rm -rf /usr/share/bash-completion/completions/git-ommix