diff options
author | root <root@rshg054.dnsready.net> | 2013-10-31 01:12:24 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-10-31 01:12:24 -0700 |
commit | b2a6f1b28b7fa31088cab9a90b0f5ab97948534d (patch) | |
tree | afa7b467e44b704b69c66862852a8c3118b8e308 /community/libnewt | |
parent | 7c151ac5589d3dbef5972f69a62b847ecf565bfa (diff) |
Thu Oct 31 01:09:50 PDT 2013
Diffstat (limited to 'community/libnewt')
-rw-r--r-- | community/libnewt/PKGBUILD | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/community/libnewt/PKGBUILD b/community/libnewt/PKGBUILD index ba797d128..8a0805b7e 100644 --- a/community/libnewt/PKGBUILD +++ b/community/libnewt/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 95249 2013-08-07 17:07:06Z arodseth $ +# $Id: PKGBUILD 99611 2013-10-30 13:59:02Z arodseth $ # Maintainer: Alexander Rødseth <rodseth@gmail.com> # Contributor: Roman Kyrylych <roman@archlinux.org> # Contributor: Tom Killian <tomk@runbox.com> @@ -6,7 +6,7 @@ pkgname=libnewt pkgver=0.52.16 -pkgrel=1 +pkgrel=2 _tclver=8.6 pkgdesc="Not Erik's Windowing Toolkit - text mode windowing with slang" arch=('x86_64' 'i686') @@ -21,7 +21,7 @@ source=("https://fedorahosted.org/releases/n/e/newt/newt-$pkgver.tar.gz") sha256sums=('1b9574bc9c8fb7b25cd26e5c3f2840e8c17fde5dd09c759604925919b3589cd3') prepare() { - cd "$srcdir/newt-$pkgver" + cd "newt-$pkgver" sed -i "s:tcl8.4:tcl$_tclver:" Makefile.in sed -i 's:bin/python:bin/python2:' *.py @@ -29,14 +29,14 @@ prepare() { } build() { - cd "$srcdir/newt-$pkgver" + cd "newt-$pkgver" ./configure --prefix=/usr --with-gpm-support make } package() { - cd "$srcdir/newt-$pkgver" + cd "newt-$pkgver" make prefix="$pkgdir/usr" install } |