diff options
Diffstat (limited to 'community/rlwrap')
-rw-r--r-- | community/rlwrap/ChangeLog | 5 | ||||
-rw-r--r-- | community/rlwrap/PKGBUILD | 30 |
2 files changed, 35 insertions, 0 deletions
diff --git a/community/rlwrap/ChangeLog b/community/rlwrap/ChangeLog new file mode 100644 index 000000000..c28dd3ee0 --- /dev/null +++ b/community/rlwrap/ChangeLog @@ -0,0 +1,5 @@ +2008-03-21 partition <heniekk@gmail.com> +* Updated to 0.30 +2007-06-28 tardo <tardo@nagi-fanboi.net> +* Built for x86_64 + diff --git a/community/rlwrap/PKGBUILD b/community/rlwrap/PKGBUILD new file mode 100644 index 000000000..3cef5ba91 --- /dev/null +++ b/community/rlwrap/PKGBUILD @@ -0,0 +1,30 @@ +# $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=2 +pkgdesc="A 'readline wrapper'" +arch=('i686' 'x86_64') +url="http://utopia.knoware.nl/~hlub/uck/rlwrap/" +license=('GPL') +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 +} + +package() { + cd $srcdir/$pkgname-$pkgver + + make DESTDIR=$pkgdir install +} |