mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
22 lines
714 B
Bash
22 lines
714 B
Bash
# $Id: PKGBUILD 35836 2009-04-17 18:13:45Z eric $
|
|
# Maintainer: dorphell <dorphell@archlinux.org>
|
|
pkgname=rcs
|
|
pkgver=5.7
|
|
pkgrel=4
|
|
pkgdesc="Revision Control System"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.cs.purdue.edu/homes/trinkle/RCS/"
|
|
license=('GPL')
|
|
depends=('glibc')
|
|
source=(http://www.cs.purdue.edu/homes/trinkle/RCS/rcs-$pkgver.tar.Z \
|
|
rcs-5.7.patch)
|
|
md5sums=('423282f0edb353296d9f3498ab683abf' '7ae4b7cb79259ccdf5eee0ab94fe2a2a')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
patch -Np1 -i ../rcs-5.7.patch || return 1
|
|
./configure --prefix=/usr || return 1
|
|
make || return 1
|
|
make prefix=$pkgdir/usr man1dir=$pkgdir/usr/share/man/man1 \
|
|
man5dir=$pkgdir/usr/share/man/man5 install || return 1
|
|
}
|