mirror of
https://git.yoctoproject.org/poky
synced 2026-06-02 13:29:49 +00:00
bzip2: Add 1.0.5 and autotool it
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4736 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
+41
@@ -0,0 +1,41 @@
|
|||||||
|
|
||||||
|
lib_LTLIBRARIES = libbz2.la
|
||||||
|
|
||||||
|
libbz2_la_SOURCES = blocksort.c \
|
||||||
|
huffman.c \
|
||||||
|
crctable.c \
|
||||||
|
randtable.c \
|
||||||
|
compress.c \
|
||||||
|
decompress.c \
|
||||||
|
bzlib.c
|
||||||
|
|
||||||
|
bin_PROGRAMS = bzip2 bzip2recover
|
||||||
|
|
||||||
|
bzip2_SOURCES = bzip2.c
|
||||||
|
bzip2_LDADD = libbz2.la
|
||||||
|
bzip2_DEPENDENCIES = libbz2.la
|
||||||
|
|
||||||
|
include_HEADERS = bzlib.h
|
||||||
|
|
||||||
|
bzip2recover_SOURCES = bzip2recover.c
|
||||||
|
bzip2recover_LDADD = libbz2.la
|
||||||
|
bzip2recover_DEPENDENCIES = libbz2.la
|
||||||
|
|
||||||
|
bin_SCRIPTS = bzgrep bzgrep bzmore bzdiff
|
||||||
|
|
||||||
|
man_MANS = bzip2.1 bzgrep.1 bzmore.1 bzdiff.1
|
||||||
|
EXTRA_DIST = $(man_MANS)
|
||||||
|
|
||||||
|
install-exec-hook:
|
||||||
|
ln -s $(bindir)/bzip2$(EXEEXT) $(DESTDIR)$(bindir)/bunzip2$(EXEEXT)
|
||||||
|
ln -s $(bindir)/bzip2$(EXEEXT) $(DESTDIR)$(bindir)/bzcat$(EXEEXT)
|
||||||
|
ln -s $(bindir)/bzgrep$(EXEEXT) $(DESTDIR)$(bindir)/bzegrep$(EXEEXT)
|
||||||
|
ln -s $(bindir)/bzgrep$(EXEEXT) $(DESTDIR)$(bindir)/bzfgrep$(EXEEXT)
|
||||||
|
ln -s $(bindir)/bzmore$(EXEEXT) $(DESTDIR)$(bindir)/bzless$(EXEEXT)
|
||||||
|
ln -s $(bindir)/bzdiff$(EXEEXT) $(DESTDIR)$(bindir)/bzcmp$(EXEEXT)
|
||||||
|
|
||||||
|
install-data-hook:
|
||||||
|
echo ".so man1/bzgrep.1" > $(DESTDIR)$(mandir)/man1/bzegrep.1
|
||||||
|
echo ".so man1/bzgrep.1" > $(DESTDIR)$(mandir)/man1/bzfgrep.1
|
||||||
|
echo ".so man1/bzmore.1" > $(DESTDIR)$(mandir)/man1/bzless.1
|
||||||
|
echo ".so man1/bzdiff.1" > $(DESTDIR)$(mandir)/man1/bzcmp.1
|
||||||
+14
@@ -0,0 +1,14 @@
|
|||||||
|
AC_PREREQ([2.57])
|
||||||
|
|
||||||
|
AC_INIT(bzip2, 2.0.5, , libXrender)
|
||||||
|
AM_INIT_AUTOMAKE()
|
||||||
|
AM_MAINTAINER_MODE
|
||||||
|
|
||||||
|
#AM_CONFIG_HEADER(config.h)
|
||||||
|
|
||||||
|
# Check for progs
|
||||||
|
AC_PROG_CC
|
||||||
|
AC_PROG_LIBTOOL
|
||||||
|
|
||||||
|
AC_OUTPUT([Makefile])
|
||||||
|
|
||||||
@@ -0,0 +1,39 @@
|
|||||||
|
DESCRIPTION = "Very high-quality data compression program."
|
||||||
|
SECTION = "console/utils"
|
||||||
|
PR = "r0"
|
||||||
|
|
||||||
|
LICENSE = "bzip2"
|
||||||
|
SRC_URI = "http://www.bzip.org/1.0.5/bzip2-1.0.5.tar.gz \
|
||||||
|
file://configure.ac \
|
||||||
|
file://Makefile.am"
|
||||||
|
|
||||||
|
CFLAGS_append = " -fPIC -fpic -Winline -fno-strength-reduce -D_FILE_OFFSET_BITS=64"
|
||||||
|
|
||||||
|
inherit autotools
|
||||||
|
|
||||||
|
do_configure_prepend () {
|
||||||
|
cp ${WORKDIR}/configure.ac ${S}/
|
||||||
|
cp ${WORKDIR}/Makefile.am ${S}/
|
||||||
|
cp ${STAGING_DATADIR_NATIVE}/automake*/install-sh ${S}/
|
||||||
|
}
|
||||||
|
|
||||||
|
do_install_append () {
|
||||||
|
mv ${D}${bindir}/bunzip2 ${D}${bindir}/bunzip2.${PN}
|
||||||
|
mv ${D}${bindir}/bzcat ${D}${bindir}/bzcat.${PN}
|
||||||
|
}
|
||||||
|
|
||||||
|
do_stage () {
|
||||||
|
install -m 0644 bzlib.h ${STAGING_INCDIR}/
|
||||||
|
oe_libinstall -a -so libbz2 ${STAGING_LIBDIR}
|
||||||
|
}
|
||||||
|
|
||||||
|
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}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user