core/sharutils/PKGBUILD

30 lines
792 B
Bash
Raw Normal View History

2010-05-22 06:07:29 +08:00
# $Id: PKGBUILD 78003 2010-04-19 08:13:10Z dgriffiths $
# Maintainer: Kevin Piche <kevin@archlinux.org>
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
pkgname=sharutils
2012-11-23 21:38:37 +08:00
pkgver=4.11.1
pkgrel=1
2010-05-22 06:07:29 +08:00
pkgdesc="GNU shar makes so-called shell archives out of many files"
2012-11-23 21:38:37 +08:00
arch=(x86_64)
2010-05-22 06:07:29 +08:00
url="http://www.gnu.org/software/sharutils/"
license=('GPL')
depends=('gettext' 'texinfo')
install=sharutils.install
2012-11-23 21:38:37 +08:00
source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
md5sums=('52dd02b6f5e0a148ba871234ae29bba2')
2010-05-22 06:07:29 +08:00
build() {
cd ${srcdir}/${pkgname}-${pkgver}
2012-11-23 21:38:37 +08:00
./configure --prefix=/usr \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--disable-nls
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR=${pkgdir} install
2010-05-22 06:07:29 +08:00
}