2019-09-28 00:17:56 +08:00
|
|
|
# Description: Reading/writing various compression formats
|
|
|
|
# URL: https://libarchive.org/
|
2019-11-10 23:58:56 +08:00
|
|
|
# Maintainer: Emmett1, emmett1 dot 2miligrams at gmail dot com
|
2019-09-28 00:17:56 +08:00
|
|
|
# Depends on:
|
|
|
|
|
|
|
|
name=libarchive
|
2020-11-13 13:58:01 +08:00
|
|
|
version=3.4.3
|
2019-09-28 00:17:56 +08:00
|
|
|
release=1
|
|
|
|
source=(https://github.com/libarchive/libarchive/releases/download/v$version/libarchive-$version.tar.gz)
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
|
|
|
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--disable-static
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
}
|