diff options
Diffstat (limited to 'abs/extra-testing/cvs/PKGBUILD')
-rw-r--r-- | abs/extra-testing/cvs/PKGBUILD | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/abs/extra-testing/cvs/PKGBUILD b/abs/extra-testing/cvs/PKGBUILD new file mode 100644 index 0000000..488f4a0 --- /dev/null +++ b/abs/extra-testing/cvs/PKGBUILD @@ -0,0 +1,20 @@ +# $Id: PKGBUILD 20493 2008-12-05 11:27:50Z allan $ +# Maintainer: dorphell <dorphell@archlinux.org> +pkgname=cvs +pkgver=1.11.23 +pkgrel=3 +pkgdesc="Concurrent Versions System - a source control system" +arch=(i686 x86_64) +url="http://ximbiot.com/cvs/wiki/index.php" +license=('GPL') +depends=('heimdal>=1.2') +source=(ftp://ftp.gnu.org/non-gnu/cvs/source/stable/$pkgver/$pkgname-$pkgver.tar.bz2) +md5sums=('0213ea514e231559d6ff8f80a34117f0') + +build() { + cd $startdir/src/$pkgname-$pkgver + unset EDITOR VISUAL + ./configure --prefix=/usr + make || return 1 + make DESTDIR=$startdir/pkg install +} |