PKGBUILDs/community/rlwrap/PKGBUILD

24 lines
702 B
Bash
Raw Normal View History

2009-10-10 02:15:33 +00:00
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
# 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.30
pkgrel=2
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=('03d8bd4996945ea32d3c7d5dc38c956e')
build() {
cd $srcdir/$pkgname-$pkgver
./configure --prefix=/usr
make || result 1
make DESTDIR=$pkgdir install || return 1
}