mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 15:17:16 +08:00
30 lines
792 B
Bash
30 lines
792 B
Bash
# $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
|
|
pkgver=4.11.1
|
|
pkgrel=1
|
|
pkgdesc="GNU shar makes so-called shell archives out of many files"
|
|
arch=(x86_64)
|
|
url="http://www.gnu.org/software/sharutils/"
|
|
license=('GPL')
|
|
depends=('gettext' 'texinfo')
|
|
install=sharutils.install
|
|
source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('52dd02b6f5e0a148ba871234ae29bba2')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info \
|
|
--disable-nls
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR=${pkgdir} install
|
|
}
|