Files
extra/rcs/PKGBUILD
2025-06-22 20:39:04 -05:00

26 lines
706 B
Bash

# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=rcs
pkgver=5.10.1
pkgrel=1
pkgdesc="Revision Control System: manages multiple revisions of files"
url='https://www.gnu.org/software/rcs/'
license=('GPL-3')
arch=('i686' 'x86_64')
depends=('bash' 'diffutils' 'ed')
source=("https://ftp.gnu.org/gnu/$pkgname/${pkgname}-${pkgver}.tar.lz")
sha512sums=('4d3755d704a05da8582acb78a83845885f34b3144af6d19c568e6707831563b077ec5603a12f5d4de6ec583d0886d3a8ccc7ee0e1f10070f9e6de142198cd530')
build() {
cd "${pkgname}-${pkgver}"
./configure \
--prefix /usr
make
}
package() {
cd "${pkgname}-${pkgver}"
make DESTDIR="$pkgdir" install
install -Dm644 COPYING -t "$pkgdir/usr/share/licenses/$pkgname"
}