19 lines
497 B
Text
Executable file
19 lines
497 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.5.1
|
|
release=1
|
|
source=(https://github.com/libarchive/libarchive/releases/download/$version/libarchive-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--disable-static
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|