58 lines
1.6 KiB
Bash
58 lines
1.6 KiB
Bash
# Template file for 'libarchive'
|
|
pkgname=libarchive
|
|
version=3.3.2
|
|
revision=5
|
|
bootstrap=yes
|
|
build_style=gnu-configure
|
|
configure_args="$(vopt_enable acl) $(vopt_enable acl xattr)
|
|
$(vopt_with expat) $(vopt_with lzo lzo2) $(vopt_with lz4)
|
|
$(vopt_with ssl openssl) --without-xml2 --without-nettle
|
|
--disable-rpath ac_cv_func_lchmod=no"
|
|
makedepends="zlib-devel bzip2-devel liblzma-devel
|
|
$(vopt_if acl acl-devel) $(vopt_if expat expat-devel)
|
|
$(vopt_if lzo lzo-devel) $(vopt_if lz4 liblz4-devel) $(vopt_if ssl libressl-devel)"
|
|
short_desc="Library to read/write several different streaming archive formats"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
homepage="http://www.libarchive.org/"
|
|
license="BSD"
|
|
distfiles="http://www.libarchive.org/downloads/libarchive-${version}.tar.gz"
|
|
checksum=ed2dbd6954792b2c054ccf8ec4b330a54b85904a80cef477a1c74643ddafa0ce
|
|
|
|
# Package build options
|
|
build_options="acl expat lzo lz4 ssl"
|
|
# Enable acl and ssl by default.
|
|
build_options_default="acl ssl"
|
|
|
|
if [ "$CHROOT_READY" ]; then
|
|
hostmakedepends="automake libtool pkg-config"
|
|
fi
|
|
|
|
pre_configure() {
|
|
autoreconf -if
|
|
}
|
|
post_install() {
|
|
vlicense COPYING
|
|
}
|
|
|
|
bsdtar_package() {
|
|
replaces="bsdcpio>=0"
|
|
short_desc="BSD utilities using libarchive"
|
|
pkg_install() {
|
|
vmove usr/bin
|
|
vmove usr/share/man/man1
|
|
vmove usr/share/man/man5
|
|
# Conflicts with mtree.
|
|
mv ${PKGDESTDIR}/usr/share/man/man5/{mtree.5,libarchive-mtree.5}
|
|
}
|
|
}
|
|
libarchive-devel_package() {
|
|
depends="${makedepends} ${sourcepkg}>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/*.a
|
|
vmove usr/lib/*.so
|
|
vmove usr/lib/pkgconfig
|
|
vmove usr/share
|
|
}
|
|
}
|