35 lines
838 B
Text
35 lines
838 B
Text
# Template file for 'xz'
|
|
pkgname=xz
|
|
version=5.0.7
|
|
revision=2
|
|
bootstrap=yes
|
|
build_style=gnu-configure
|
|
short_desc="The XZ utilities"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
license="Public domain, GPL-2, GPL-3, LGPL-2.1"
|
|
homepage="http://tukaani.org/xz"
|
|
distfiles="http://tukaani.org/xz/xz-${version}.tar.bz2"
|
|
checksum=e8851dc749df2340dac6c9297cb2653eff684e73c3dedf690930119502edd616
|
|
|
|
post_install() {
|
|
rm -r ${DESTDIR}/usr/share/doc
|
|
}
|
|
|
|
liblzma_package() {
|
|
short_desc="XZ-format compression library"
|
|
replaces="xz<5.0.0"
|
|
pkg_install() {
|
|
vmove "usr/lib/*.so.*"
|
|
}
|
|
}
|
|
liblzma-devel_package() {
|
|
depends="liblzma>=${version}_${revision}"
|
|
short_desc="XZ-format compression library - development files"
|
|
replaces="xz-devel>=0"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove "usr/lib/*.a"
|
|
vmove "usr/lib/*.so"
|
|
vmove usr/lib/pkgconfig
|
|
}
|
|
}
|