updated on Sun Jan 15 20:01:04 UTC 2012
[aur-mirror.git] / splitvt / PKGBUILD
blob8eb442f88b4b3bb20d6d3726491dabc34928e764
1 # Contributor: Ashok Gautham <ScriptDevil.arch@gmail.com>
2 pkgname=splitvt
3 pkgver=1.6.6    
4 pkgrel=1
5 pkgdesc="This program takes any VT100 terminal window and splits it into two shell windows, one on top and one on bottom."
6 arch=('i686' 'x86_64')
7 url="http://slouken.libsdl.org/"
8 license=('GPL')
9 depends=() # No non-trivial dependencies afaik
10 source=($url'/projects/splitvt/splitvt-1.6.6.tar.gz')
11 md5sums=('ca886884f53c529c149f8945568411ed')
12 build() {
13   cd "$srcdir/$pkgname-$pkgver"
15   if [ -f Makefile ]
16   then
17       rm Makefile
18   fi
19   ./configure  > /dev/null
20   make || return 1
21   install -d "$pkgdir/usr/bin"
22   cp "$srcdir/$pkgname-$pkgver/splitvt" "$pkgdir/usr/bin"
23   install -d "$pkgdir/usr/share/man/man1"
24   gzip "$srcdir/$pkgname-$pkgver/splitvt.man" > "$pkgdir/usr/share/man/man1/splitvt.1.gz"
27 # vim:set ts=2 sw=2 et: