summaryrefslogtreecommitdiff
path: root/community/libnewt/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-07-17 00:58:52 -0700
committerroot <root@rshg054.dnsready.net>2013-07-17 00:58:52 -0700
commitdee9f17b595ea903a982d31d1124b302bb17e2ff (patch)
tree295fdab78e28e1952fbc13ce824d57c88ede4e3b /community/libnewt/PKGBUILD
parent380530d02a5449fdef97b63b394a6743c3de0092 (diff)
Wed Jul 17 00:58:51 PDT 2013
Diffstat (limited to 'community/libnewt/PKGBUILD')
-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 307d2d90d..000000000
--- a/community/libnewt/PKGBUILD
+++ /dev/null
@@ -1,44 +0,0 @@
-# $Id: PKGBUILD 88638 2013-04-20 19:08:21Z 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.15
-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=('7a6151923e7a8a950f9a8a21668a5780d09b0f35f9d76a7ec606c71c35a0e241')
-
-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: