diff options
Diffstat (limited to 'core/which/PKGBUILD')
-rw-r--r-- | core/which/PKGBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/core/which/PKGBUILD b/core/which/PKGBUILD new file mode 100644 index 000000000..c9a7b1abf --- /dev/null +++ b/core/which/PKGBUILD @@ -0,0 +1,27 @@ +# $Id: PKGBUILD 100049 2010-11-20 03:27:58Z stephane $ +# Maintainer: Allan McRae <allan@archlinux.org> +# Contributor: Andreas Radke <andyrtr@archlinux.org> + +pkgname=which +pkgver=2.20 +pkgrel=4 +pkgdesc="A utility to show the full path of commands" +arch=('i686' 'x86_64') +url="http://www.xs4all.nl/~carlo17/which" +license=('GPL3') +groups=('base') +depends=('glibc' 'sh') +install=which.install +source=(http://www.xs4all.nl/~carlo17/$pkgname/$pkgname-$pkgver.tar.gz) +md5sums=('95be0501a466e515422cde4af46b2744') + +build() { + cd $srcdir/$pkgname-$pkgver + ./configure --prefix=/usr + make +} + +package() { + cd $srcdir/$pkgname-$pkgver + make DESTDIR=$pkgdir install +} |