19 lines
460 B
Text
Executable file
19 lines
460 B
Text
Executable file
# Description: An archiving program
|
|
# URL: https://www.gnu.org/software/tar/tar.html
|
|
# Maintainer: emmett1, emmett1.2miligrams at gmail.com
|
|
# Depends on: acl attr
|
|
|
|
name=tar
|
|
version=1.32
|
|
release=1
|
|
source=(https://ftp.gnu.org/gnu/$name/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
FORCE_UNSAFE_CONFIGURE=1 \
|
|
./configure --prefix=/usr \
|
|
--bindir=/bin
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|