# $Id: PKGBUILD 175104 2013-01-13 20:19:27Z bisson $ # Maintainer: Gaetan Bisson # Contributor: Kevin Piche # Contributor: Tom Newsom pkgname=sharutils pkgver=4.13.3 pkgrel=1 pkgdesc='Makes so-called shell archives out of many files' url='http://www.gnu.org/software/sharutils/' license=('GPL') arch=('i686' 'x86_64' 'mips64el') depends=('perl' 'gettext' 'texinfo') source=("ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz") sha1sums=('50582fcededd1891c47ec1caa98491e280950cbd') install=install build() { cd "${srcdir}/${pkgname}-${pkgver}" patch -p1 -i "$srcdir/gets.patch" ./configure \ --prefix=/usr \ --mandir=/usr/share/man \ --infodir=/usr/share/info \ make } package() { cd "${srcdir}/${pkgname}-${pkgver}" make DESTDIR="${pkgdir}" install }