To clone this repository:

git clone git@gitorious.org:chakra-packages/apps.git

To push to this repository:

# Add a new remote
git remote add origin git@gitorious.org:chakra-packages/apps.git

# Push the master branch to the newly added origin, and configure
# this remote and branch as the default:
git push -u origin master

# From now on you can push master to the "origin" remote with:
git push

Apps repository for Chakra

  1. infodir=/usr/share/info
  2. filelist=(check.info)
  3. post_install() {
  4. [ -x usr/bin/install-info ] || return 0
  5. for file in ${filelist[@]}; do
  6. install-info $infodir/$file $infodir/dir 2> /dev/null
  7. done
  8. }
  9. post_upgrade() {
  10. post_install $1
  11. }
  12. pre_remove() {
  13. [ -x usr/bin/install-info ] || return 0
  14. for file in ${filelist[@]}; do
  15. install-info --delete $infodir/$file $infodir/dir 2> /dev/null
  16. done
  17. }