# $Id: PKGBUILD 200617 2013-11-29 21:23:04Z bisson $ # Maintainer: Gaetan Bisson # Contributor: dorphell pkgname=rcs pkgver=5.9.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') depends=('ed') source=("ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz"{,.sig}) sha1sums=('cb053f6ba87ab6ea03306d6241e1cde67182100b' 'SKIP') 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 }