20 lines
490 B
Text
20 lines
490 B
Text
![]() |
# Description: Reading/writing various compression formats
|
||
|
# URL: https://libarchive.org/
|
||
|
# Maintainer: Emmett1, emmett1.2miligrams at gmail.com
|
||
|
# Depends on:
|
||
|
|
||
|
name=libarchive
|
||
|
version=3.4.0
|
||
|
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
|
||
|
}
|