diff options
Diffstat (limited to 'community/rlwrap/PKGBUILD')
-rw-r--r-- | community/rlwrap/PKGBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/community/rlwrap/PKGBUILD b/community/rlwrap/PKGBUILD new file mode 100644 index 000000000..590bbe886 --- /dev/null +++ b/community/rlwrap/PKGBUILD @@ -0,0 +1,23 @@ +# $Id: PKGBUILD 16714 2010-05-06 11:51:51Z mherych $ +# Maintainer : wizzomafizzo <wizzomafizzo@gmail.com> +# Maintainer: 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 +pkgdesc="A 'readline wrapper'" +arch=('i686' 'x86_64') +url="http://utopia.knoware.nl/~hlub/uck/rlwrap/" +license=('GPL') +depends=('readline') +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 +} |