diff options
Diffstat (limited to 'community/twin/PKGBUILD')
-rw-r--r-- | community/twin/PKGBUILD | 30 |
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 +} |