summaryrefslogtreecommitdiff
path: root/community/rlwrap/PKGBUILD
blob: 590bbe886238d32d9e6b35ba0e4c7ba2960024a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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
}