mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
22 lines
661 B
Bash
22 lines
661 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Douglas Soares de Andrade <dsandrade@gmail.com>
|
|
|
|
pkgname=cvs-feature
|
|
pkgver=1.12.13
|
|
pkgrel=2
|
|
pkgdesc="This version have of CVS has lot of improvements like proxy support and new options."
|
|
arch=('i686' 'x86_64')
|
|
url="http://ximbiot.com/cvs/wiki/index.php"
|
|
license=('GPL' 'LGPL')
|
|
depends=('glibc' 'heimdal')
|
|
conflicts=('cvs')
|
|
provides=('cvs')
|
|
source=(ftp://ftp.gnu.org/non-gnu/cvs/source/feature/$pkgver/cvs-$pkgver.tar.bz2)
|
|
md5sums=('956ab476ce276c2d19d583e227dbdbea')
|
|
|
|
build() {
|
|
cd $startdir/src/cvs-$pkgver
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make prefix=$startdir/pkg/usr install
|
|
}
|