mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-27 23:44:04 +00:00
24 lines
889 B
Bash
24 lines
889 B
Bash
|
# Maintainer: Geoffroy Carrier <geoffroy@archlinux.org>
|
||
|
# Contributor: Joël Schaerer <joel.schaerer@laposte.net>
|
||
|
pkgname=autojump
|
||
|
pkgver=5
|
||
|
pkgrel=1
|
||
|
pkgdesc="A faster way to navigate your filesystem from the command line"
|
||
|
arch=(i686 x86_64)
|
||
|
url="http://wiki.github.com/joelthelion/autojump"
|
||
|
license=('GPL')
|
||
|
depends=('bash' 'python')
|
||
|
makedepends=('git')
|
||
|
source=(http://ghost1227.com/files/archfiles/$pkgname-v$pkgver.tar.bz2 autojump.install)
|
||
|
install=(autojump.install)
|
||
|
build() {
|
||
|
cd "$srcdir/$pkgname-v$pkgver"
|
||
|
install -Dm 755 autojump "$pkgdir"/usr/bin/autojump
|
||
|
install -Dm 755 autojump.bash "$pkgdir"/etc/profile.d/autojump.bash
|
||
|
install -Dm 755 autojump.sh "$pkgdir"/etc/profile.d/autojump.sh
|
||
|
gzip -f autojump.1
|
||
|
install -Dm 644 autojump.1.gz "$pkgdir"/usr/share/man/man1/autojump.1.gz
|
||
|
}
|
||
|
md5sums=('d538ab72afa3bb717d3f20ff2767fe3d'
|
||
|
'05407ce7eeb4d9d69bae54c26dd57c1e')
|