17 lines
339 B
Plaintext
17 lines
339 B
Plaintext
# Description: Contains utilities that can create 'shell' archives.
|
|
# URL: https://www.gnu.org/software/sharutils/
|
|
# Packager: tnut at nutyx dot org
|
|
|
|
name=sharutils
|
|
version=4.15.2
|
|
release=1
|
|
|
|
source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|