30 lines
774 B
Plaintext
30 lines
774 B
Plaintext
# Description: Library to create and read several archive formats
|
|
# URL: https://www.libarchive.org/
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
|
# Depends on: acl bzip2 lzo xz zlib zstd
|
|
|
|
name=libarchive
|
|
version=3.5.2
|
|
release=2
|
|
source=(https://github.com/libarchive/libarchive/releases/download/v$version/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
# We're passing --without-xml2, --without-expat, --without-nettle
|
|
# and --without-libb2
|
|
# to avoid linking to libraries which are only available in opt.
|
|
# XML support is only needed for the xar format which we can live without.
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--without-xml2 \
|
|
--without-expat \
|
|
--without-nettle \
|
|
--without-openssl \
|
|
--without-libb2
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|