19 lines
462 B
Text
Executable file
19 lines
462 B
Text
Executable file
# Description: Reading/writing various compression formats
|
|
# URL: https://libarchive.org/
|
|
# Maintainer: Emmett1, emmett1 dot 2miligrams at gmail dot com
|
|
# Depends on:
|
|
|
|
name=libarchive
|
|
version=3.6.0
|
|
release=1
|
|
source=(https://libarchive.org/downloads/libarchive-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--disable-static
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|