diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/vile |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/vile')
-rw-r--r-- | community/vile/PKGBUILD | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/community/vile/PKGBUILD b/community/vile/PKGBUILD new file mode 100644 index 000000000..3d0b1e83a --- /dev/null +++ b/community/vile/PKGBUILD @@ -0,0 +1,31 @@ +# $Id: PKGBUILD 23288 2010-08-09 15:32:32Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> + +pkgname=vile +pkgver=9.8 +pkgrel=1 +pkgdesc="vi like emacs" +arch=('i686' 'x86_64') +url="http://invisible-island.net/vile/vile.html" +depends=('ncurses') +license=('custom') +options=(!libtool) +source=(ftp://invisible-island.net/vile/vile-$pkgver.tgz) +md5sums=('b5a0d89165f633a662cdb4b5c57f2e2f') + +build() { + cd $srcdir/$pkgname-$pkgver + ./configure --prefix=/usr + make || return 1 + make install DESTDIR=$pkgdir || return 1 + mv $pkgdir/usr/man $pkgdir/usr/share/ + + mkdir -p $pkgdir/usr/share/licenses/$pkgname + cat <<EOF >$pkgdir/usr/share/licenses/$pkgname/license +Copyright + +Vile is copyrighted by Paul G. Fox, Thomas E. Dickey and Kevin Buettner with some +files (e.g., visvile) copyright by Clark Morgan. +We distribute it under the terms of the GNU Public License, Version 2. +EOF +} |