66 lines
1.8 KiB
Plaintext
66 lines
1.8 KiB
Plaintext
# Template file for 'libarchive'
|
|
pkgname=libarchive
|
|
version=3.1.2
|
|
revision=14
|
|
bootstrap=yes
|
|
build_style=gnu-configure
|
|
configure_args="$(vopt_enable acl) $(vopt_enable acl xattr)
|
|
$(vopt_with expat) $(vopt_with lzo lzo2) $(vopt_with ssl openssl)
|
|
--without-xml2 --without-nettle --disable-rpath ac_cv_func_lchmod=no"
|
|
makedepends="zlib-devel bzip2-devel liblzma-devel>=5.2
|
|
$(vopt_if acl acl-devel) $(vopt_if expat expat-devel)
|
|
$(vopt_if lzo lzo-devel) $(vopt_if ssl 'libressl-devel>=2.1.2')"
|
|
short_desc="Library to read/write several different streaming archive formats"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
homepage="http://www.libarchive.org/"
|
|
license="BSD"
|
|
distfiles="http://www.libarchive.org/downloads/libarchive-${version}.tar.gz"
|
|
checksum=eb87eacd8fe49e8d90c8fdc189813023ccc319c5e752b01fb6ad0cc7b2c53d5e
|
|
|
|
if [ -z "$CHROOT_READY" ]; then
|
|
CFLAGS+=" -I${XBPS_MASTERDIR}/usr/include"
|
|
LDFLAGS+=" -L${XBPS_MASTERDIR}/usr/lib"
|
|
fi
|
|
|
|
if [ "$CROSS_BUILD" ]; then
|
|
hostmakedepends="libtool"
|
|
pre_configure() {
|
|
libtoolize -f
|
|
}
|
|
fi
|
|
|
|
# Package build options
|
|
build_options="acl expat lzo ssl"
|
|
# Enable acl and ssl by default.
|
|
build_options_default="acl ssl"
|
|
|
|
bsdtar_package() {
|
|
short_desc="BSD tar(1) using libarchive"
|
|
pkg_install() {
|
|
vmove usr/bin/bsdtar
|
|
vmove usr/share/man/man1/bsdtar.1
|
|
vmove usr/share/man/man5/tar.5
|
|
}
|
|
}
|
|
bsdcpio_package() {
|
|
short_desc="BSD cpio(1) using libarchive"
|
|
pkg_install() {
|
|
vmove usr/bin/bsdcpio
|
|
vmove usr/share/man/man1/bsdcpio.1
|
|
vmove usr/share/man/man5/cpio.5
|
|
}
|
|
}
|
|
libarchive-devel_package() {
|
|
depends="${makedepends} libarchive>=${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
|
|
# Conflicts with mtree.
|
|
mv ${PKGDESTDIR}/usr/share/man/man5/{mtree.5,libarchive-mtree.5}
|
|
}
|
|
}
|