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
- infodir=/usr/share/info
- filelist=(check.info)
- post_install() {
- [ -x usr/bin/install-info ] || return 0
- for file in ${filelist[@]}; do
- install-info $infodir/$file $infodir/dir 2> /dev/null
- done
- }
- post_upgrade() {
- post_install $1
- }
- pre_remove() {
- [ -x usr/bin/install-info ] || return 0
- for file in ${filelist[@]}; do
- install-info --delete $infodir/$file $infodir/dir 2> /dev/null
- done
- }