diff --git a/PKGBUILD b/PKGBUILD index 01f908e..d30281f 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,10 +1,6 @@ - -# See http://wiki.archlinux.org/index.php/Arch_CVS_&_SVN_PKGBUILD_guidelines -# for more information on packaging from GIT sources. - # Contributor: Joël Schaerer pkgname=autojump -pkgver=VERSION +pkgver=20090210 pkgrel=1 pkgdesc="A faster way to navigate your filesystem from the command line" arch=(i686) @@ -12,6 +8,7 @@ url="http://wiki.github.com/joelthelion/autojump" license=('GPL') depends=('bash' 'python') md5sums=() #generate with 'makepkg -g' +install=(autojump.install) _gitroot="git://github.com/joelthelion/autojump.git" _gitname="autojump" @@ -24,10 +21,12 @@ build() { cd $_gitname && git pull origin || return 1 msg "The local files are updated." else - git clone $_gitroot || return 1 + git clone $_gitroot && cd $_gitname || return 1 fi + gzip -f autojump.1 msg "GIT checkout done" install -Dm 755 autojump ${pkgdir}/usr/bin/autojump install -Dm 755 autojump.sh ${pkgdir}/etc/profile.d/autojump.sh + install -Dm 644 autojump.1.gz ${pkgdir}/usr/share/man/man1/autojump.1.gz }