summaryrefslogtreecommitdiff
path: root/community/libnewt
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
committerroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
commit18a41d682d6e91e0d28fce23eb75292f477bd620 (patch)
treebce8f660d7d0b6541cadbc49bf1bac2434e4c0c6 /community/libnewt
parent0ade1da67addf154d93c6a6399b0a3d5a18a3336 (diff)
Sun Aug 11 01:21:31 PDT 2013
Diffstat (limited to 'community/libnewt')
-rw-r--r--community/libnewt/PKGBUILD44
1 files changed, 0 insertions, 44 deletions
diff --git a/community/libnewt/PKGBUILD b/community/libnewt/PKGBUILD
deleted file mode 100644
index ba797d128..000000000
--- a/community/libnewt/PKGBUILD
+++ /dev/null
@@ -1,44 +0,0 @@
-# $Id: PKGBUILD 95249 2013-08-07 17:07:06Z arodseth $
-# Maintainer: Alexander Rødseth <rodseth@gmail.com>
-# Contributor: Roman Kyrylych <roman@archlinux.org>
-# Contributor: Tom Killian <tomk@runbox.com>
-# Contributor: Daniel J Griffiths <ghost1227@archlinux.us>
-
-pkgname=libnewt
-pkgver=0.52.16
-pkgrel=1
-_tclver=8.6
-pkgdesc="Not Erik's Windowing Toolkit - text mode windowing with slang"
-arch=('x86_64' 'i686')
-url='https://fedorahosted.org/newt/'
-license=('GPL')
-depends=('slang' 'popt' 'gpm')
-makedepends=("tcl>=$_tclver" 'python2')
-optdepends=('tcl: whiptcl support' \
- 'python2: libnewt api through _snack module')
-options=('!makeflags')
-source=("https://fedorahosted.org/releases/n/e/newt/newt-$pkgver.tar.gz")
-sha256sums=('1b9574bc9c8fb7b25cd26e5c3f2840e8c17fde5dd09c759604925919b3589cd3')
-
-prepare() {
- cd "$srcdir/newt-$pkgver"
-
- sed -i "s:tcl8.4:tcl$_tclver:" Makefile.in
- sed -i 's:bin/python:bin/python2:' *.py
- echo '#define USE_INTERP_RESULT 1' >> config.h
-}
-
-build() {
- cd "$srcdir/newt-$pkgver"
-
- ./configure --prefix=/usr --with-gpm-support
- make
-}
-
-package() {
- cd "$srcdir/newt-$pkgver"
-
- make prefix="$pkgdir/usr" install
-}
-
-# vim:set ts=2 sw=2 et: