[arch-commits] Commit in libnewt/repos (staging-i686)

2015-09-20 Thread Florian Pritz
Date: Sunday, September 20, 2015 @ 21:33:42
  Author: bluewind
Revision: 141323

remove wrong repo

Deleted:
  libnewt/repos/staging-i686/


[arch-commits] Commit in libnewt/repos (staging-i686 staging-i686/PKGBUILD)

2015-09-19 Thread Alexander Rødseth
Date: Saturday, September 19, 2015 @ 14:41:01
  Author: arodseth
Revision: 140774

archrelease: copy trunk to staging-i686

Added:
  libnewt/repos/staging-i686/
  libnewt/repos/staging-i686/PKGBUILD
(from rev 140772, libnewt/trunk/PKGBUILD)

--+
 PKGBUILD |   43 +++
 1 file changed, 43 insertions(+)

Copied: libnewt/repos/staging-i686/PKGBUILD (from rev 140772, 
libnewt/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-09-19 12:41:01 UTC (rev 140774)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Roman Kyrylych 
+# Contributor: Tom Killian 
+# Contributor: Daniel J Griffiths 
+
+pkgname=libnewt
+pkgver=0.52.18
+pkgrel=3
+_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" 'python' 'python2')
+optdepends=('tcl: whiptcl support' \
+'python: libnewt support with the _snack module'
+'python2: libnewt support with the _snack module')
+options=('!makeflags')
+source=("https://fedorahosted.org/releases/n/e/newt/newt-$pkgver.tar.gz;)
+sha256sums=('771b0e634ede56ae6a6acd910728bb5832ac13ddb0d1d27919d2498dab70c91e')
+
+prepare() {
+  cd "newt-$pkgver"
+
+  sed -i "s:tcl8.4:tcl$_tclver:" Makefile.in
+  echo '#define USE_INTERP_RESULT 1' >> config.h
+}
+
+build() {
+  cd "newt-$pkgver"
+
+  ./configure --prefix=/usr --with-gpm-support
+  make
+}
+
+package() {
+  make -C "newt-$pkgver" prefix="$pkgdir/usr" install
+}
+
+# getver: https://git.fedorahosted.org/cgit/newt.git/plain/CHANGES
+# vim:set ts=2 sw=2 et: