diff options
author | root <root@rshg054.dnsready.net> | 2012-03-01 03:21:19 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-03-01 03:21:19 +0000 |
commit | 6f297b1cf462a11227d811a87124006c55911d63 (patch) | |
tree | 325073cc18485496bf07d32e56edf643f3b7a2bf /community/rlwrap | |
parent | 32b05a621cb20af1bd4b7cd6f5609b7512bb20f1 (diff) |
Thu Mar 1 03:21:19 UTC 2012
Diffstat (limited to 'community/rlwrap')
-rw-r--r-- | community/rlwrap/PKGBUILD | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/community/rlwrap/PKGBUILD b/community/rlwrap/PKGBUILD index 590bbe886..3cef5ba91 100644 --- a/community/rlwrap/PKGBUILD +++ b/community/rlwrap/PKGBUILD @@ -1,23 +1,30 @@ -# $Id: PKGBUILD 16714 2010-05-06 11:51:51Z mherych $ -# Maintainer : wizzomafizzo <wizzomafizzo@gmail.com> -# Maintainer: Mateusz Herych <heniekk@gmail.com> +# $Id: PKGBUILD 66761 2012-02-28 08:57:15Z giovanni $ +# Maintainer: Kyle Keen <keenerd@gmail.com> +# Contributor: wizzomafizzo <wizzomafizzo@gmail.com> +# Contributor: Mateusz Herych <heniekk@gmail.com> # Contributor: Benjamin Andresen <benny AT klapmuetz DOT org> # Contributor: Douglas Thrift <douglas@douglasthrift.net> pkgname=rlwrap pkgver=0.37 -pkgrel=1 +pkgrel=2 pkgdesc="A 'readline wrapper'" arch=('i686' 'x86_64') url="http://utopia.knoware.nl/~hlub/uck/rlwrap/" license=('GPL') -depends=('readline') +depends=('perl') source=(http://utopia.knoware.nl/~hlub/uck/$pkgname/$pkgname-$pkgver.tar.gz) md5sums=('04cd6e2c257eb5a86b297f2ebf91dbbf') build() { cd $srcdir/$pkgname-$pkgver + ./configure --prefix=/usr - make || return 1 - make DESTDIR=$pkgdir install || return 1 + make +} + +package() { + cd $srcdir/$pkgname-$pkgver + + make DESTDIR=$pkgdir install } |