diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/rote |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/rote')
-rw-r--r-- | community/rote/PKGBUILD | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/community/rote/PKGBUILD b/community/rote/PKGBUILD new file mode 100644 index 000000000..d0043e679 --- /dev/null +++ b/community/rote/PKGBUILD @@ -0,0 +1,24 @@ +# $Id: PKGBUILD 21784 2010-07-17 10:23:37Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> + +pkgname=rote +pkgver=0.2.8 +pkgrel=2 +pkgdesc="terminal emulation library" +arch=('i686' 'x86_64') +url="http://rote.sourceforge.net/" +license=('GPL') +depends=(ncurses) +makedepends=() +source=(http://downloads.sourceforge.net/sourceforge/rote/rote-$pkgver.tar.gz) +md5sums=('9e5901267d9ed239343f55a54d76e48e') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + ./configure --prefix=/usr + make || return 1 + make DESTDIR="$pkgdir" install || return 1 + + install -D -m0644 roteprivate.h $pkgdir/usr/include/rote/roteprivate.h +} |