blob: bbb2012c395f9c07b8cadfa5a29e66c14038b26c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
DESCRIPTION = "Very high-quality data compression program"
SECTION = "console/utils"
PR = "r1"
LICENSE = "bzip2"
SRC_URI = "http://www.bzip.org/${PV}/bzip2-${PV}.tar.gz \
file://bzip2-1.0.5-autoconfiscated.patch;patch=1"
inherit autotools_stage pkgconfig
do_configure_prepend () {
if test -f LICENSE ; then sh ./autogen.sh ; fi
}
do_install_append () {
mv ${D}${bindir}/bunzip2 ${D}${bindir}/bunzip2.${PN}
mv ${D}${bindir}/bzcat ${D}${bindir}/bzcat.${PN}
}
PACKAGES =+ "libbz2"
FILES_libbz2 = "${libdir}/libbz2.so.*"
pkg_postinst_${PN} () {
update-alternatives --install ${bindir}/bunzip2 bunzip2 bunzip2.${PN} 100
update-alternatives --install ${bindir}/bzcat bzcat bzcat.${PN} 100
}
pkg_prerm_${PN} () {
update-alternatives --remove bunzip2 bunzip2.${PN}
update-alternatives --remove bzcat bzcat.${PN}
}
|