mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 11:04:37 +08:00
32 lines
690 B
Bash
32 lines
690 B
Bash
pkgname=tar
|
|
pkgver=1.29
|
|
pkgrel=1
|
|
pkgdesc='Utility used to store, backup, and transport files'
|
|
arch=('x86_64')
|
|
url="http://www.gnu.org/software/tar/tar.html"
|
|
license=('GPL3')
|
|
groups=('base')
|
|
depends=('glibc' 'acl' 'attr')
|
|
options=('!emptydirs')
|
|
install=tar.install
|
|
validpgpkeys=('325F650C4C2B6AD58807327A3602B07F55D0C732') # Sergey Poznyakoff
|
|
source=("ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
|
|
md5sums=('a1802fec550baaeecff6c381629653ef'
|
|
'SKIP')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
./configure --prefix=/usr --libexecdir=/usr/lib/tar
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd $pkgname-$pkgver
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
make DESTDIR="$pkgdir" install
|
|
}
|