mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
21 lines
580 B
Bash
21 lines
580 B
Bash
|
# $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=(arm)
|
||
|
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
|
||
|
}
|