mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 19:47:13 +08:00
30 lines
701 B
Bash
30 lines
701 B
Bash
# Maintainer: abveritas[at]chakra-project[dot]org>
|
|
|
|
pkgname=sharutils
|
|
pkgver=4.13.3
|
|
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.xz")
|
|
md5sums=('ac996dbe2dfc74647b500506af56779b')
|
|
|
|
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
|
|
}
|