# $Id: PKGBUILD 181864 2013-04-05 00:36:01Z bisson $ # Contributor: dorphell # Maintainer: Gaetan Bisson pkgname=rcs pkgver=5.8.2 pkgrel=1 pkgdesc='Revision Control System: manages multiple revisions of files' url='http://www.gnu.org/software/rcs/' license=('GPL3') arch=('i686' 'x86_64') source=("ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz") sha1sums=('5972a7f97ab307e775083144cdf6b425c4aba7fe') build() { cd "${srcdir}/${pkgname}-${pkgver}" ./configure --prefix=/usr make } check() { cd "${srcdir}/${pkgname}-${pkgver}" make check } package() { cd "${srcdir}/${pkgname}-${pkgver}" make prefix="${pkgdir}/usr" install }