summaryrefslogtreecommitdiff
path: root/community/twin
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-08-13 01:33:19 -0700
committerroot <root@rshg054.dnsready.net>2013-08-13 01:33:19 -0700
commit7a65a910b77ad191d69881098c47f9b0c852d92e (patch)
tree9564e611af1442f8952a8cbddb3b0ad25ed71aab /community/twin
parent60da6abff6c9577a783d72865f11de7a585e912e (diff)
Tue Aug 13 01:31:08 PDT 2013
Diffstat (limited to 'community/twin')
-rw-r--r--community/twin/PKGBUILD30
1 files changed, 30 insertions, 0 deletions
diff --git a/community/twin/PKGBUILD b/community/twin/PKGBUILD
new file mode 100644
index 000000000..6abb8de4f
--- /dev/null
+++ b/community/twin/PKGBUILD
@@ -0,0 +1,30 @@
+# $Id: PKGBUILD 91844 2013-05-28 17:06:13Z spupykin $
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+# Contributor: G_Syme <demichan(at)mail(dot)upb(dot)de>
+
+pkgname=twin
+pkgver=0.6.2
+pkgrel=4
+pkgdesc="A text-mode window environment"
+arch=('i686' 'x86_64')
+url='http://sourceforge.net/projects/twin/'
+license=('GPL2' 'LGPL2.1')
+depends=('gpm' 'zlib' 'libxpm')
+optdepends=('gtk')
+options=('!makeflags')
+source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz")
+md5sums=('6211c8b2e655003eb96b1fc5dc37e7d9')
+
+build() {
+ cd $srcdir/$pkgname-$pkgver
+ LDFLAGS="-lX11" ./configure --prefix=/usr --sbindir=/usr/bin \
+ --enable-tt=yes \
+ --enable-tt-hw-twin=yes --enable-tt-hw-twin-tunnel=yes --enable-tt-hw-twin-detunnel=yes \
+ --enable-tt-hw-xml=yes
+ make
+}
+
+package() {
+ cd $srcdir/$pkgname-$pkgver
+ make DESTDIR=$pkgdir install
+}