diff options
author | Michał Masłowski <mtjm@mtjm.eu> | 2012-03-02 18:53:10 +0100 |
---|---|---|
committer | Michał Masłowski <mtjm@mtjm.eu> | 2012-03-02 18:53:10 +0100 |
commit | 588ef662386ce30b28688e95f11f7fc7a52f8e25 (patch) | |
tree | a62b104d7b70d82767fbde6aeb782b1359302459 /community/rlwrap | |
parent | 9ea487ed90ebf891571ea8fffd34c154cbf981df (diff) | |
parent | b479098a1b8d7cb545339cb225a7cde4988b2748 (diff) |
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts:
community/kdesvn/PKGBUILD
community/lwm/PKGBUILD
community/sakura/PKGBUILD
extra/openmpi/PKGBUILD
extra/qt/PKGBUILD
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 ca15bd42b..6ca506ac5 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' 'mips64el') 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 } |