diff options
Diffstat (limited to 'community/libnewt/PKGBUILD')
-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 } |