bzip2: install stuff to /usr, install license, set homepage.
This commit is contained in:
parent
c67c0afda9
commit
18e5a313c3
1 changed files with 18 additions and 21 deletions
|
@ -1,9 +1,11 @@
|
||||||
# Template build file for 'bzip2'.
|
# Template build file for 'bzip2'.
|
||||||
pkgname=bzip2
|
pkgname=bzip2
|
||||||
version=1.0.6
|
version=1.0.6
|
||||||
revision=2
|
revision=3
|
||||||
|
homepage="http://www.bzip.org"
|
||||||
distfiles="http://www.bzip.org/$version/$pkgname-$version.tar.gz"
|
distfiles="http://www.bzip.org/$version/$pkgname-$version.tar.gz"
|
||||||
short_desc="The bzip2 compression library"
|
short_desc="The bzip2 compression library"
|
||||||
|
license="BSD"
|
||||||
maintainer="Juan RP <xtraeme@gmail.com>"
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
||||||
checksum=a2848f34fcd5d6cf47def00461fcb528a0484d8edef8208d6d2e2909dc61d9cd
|
checksum=a2848f34fcd5d6cf47def00461fcb528a0484d8edef8208d6d2e2909dc61d9cd
|
||||||
long_desc="
|
long_desc="
|
||||||
|
@ -24,8 +26,7 @@ long_desc="
|
||||||
bootstrap=yes
|
bootstrap=yes
|
||||||
subpackages="bzip2-devel"
|
subpackages="bzip2-devel"
|
||||||
|
|
||||||
do_build()
|
do_build() {
|
||||||
{
|
|
||||||
# Add large-file support
|
# Add large-file support
|
||||||
sed -e 's/^CFLAGS=\(.*\)$/CFLAGS=\1 \$(BIGFILES)/' -i Makefile-libbz2_so
|
sed -e 's/^CFLAGS=\(.*\)$/CFLAGS=\1 \$(BIGFILES)/' -i Makefile-libbz2_so
|
||||||
|
|
||||||
|
@ -37,29 +38,25 @@ do_build()
|
||||||
make ${makejobs} bzip2recover libbz2.a
|
make ${makejobs} bzip2recover libbz2.a
|
||||||
}
|
}
|
||||||
|
|
||||||
do_install()
|
do_install() {
|
||||||
{
|
vinstall bzip2-shared 755 usr/bin bzip2
|
||||||
install -dm755 ${DESTDIR}/bin
|
vinstall bzip2recover 755 usr/bin
|
||||||
install -m755 bzip2-shared ${DESTDIR}/bin/bzip2
|
ln -sf bzip2 ${DESTDIR}/usr/bin/bunzip2
|
||||||
install -m755 bzip2recover ${DESTDIR}/bin
|
ln -sf bzip2 ${DESTDIR}/usr/bin/bzcat
|
||||||
ln -sf bzip2 ${DESTDIR}/bin/bunzip2
|
|
||||||
ln -sf bzip2 ${DESTDIR}/bin/bzcat
|
|
||||||
|
|
||||||
install -dm755 ${DESTDIR}/usr/bin
|
|
||||||
install -m755 bzdiff bzgrep bzmore ${DESTDIR}/usr/bin
|
install -m755 bzdiff bzgrep bzmore ${DESTDIR}/usr/bin
|
||||||
|
|
||||||
install -Dm755 libbz2.so.${version} ${DESTDIR}/lib/libbz2.so.${version}
|
vinstall libbz2.so.${version} 755 usr/lib
|
||||||
ln -s libbz2.so.${version} ${DESTDIR}/lib/libbz2.so
|
ln -s libbz2.so.${version} ${DESTDIR}/usr/lib/libbz2.so
|
||||||
ln -s libbz2.so.${version} ${DESTDIR}/lib/libbz2.so.1
|
ln -s libbz2.so.${version} ${DESTDIR}/usr/lib/libbz2.so.1
|
||||||
ln -s libbz2.so.${version} ${DESTDIR}/lib/libbz2.so.1.0
|
ln -s libbz2.so.${version} ${DESTDIR}/usr/lib/libbz2.so.1.0
|
||||||
|
|
||||||
install -Dm644 libbz2.a ${DESTDIR}/usr/lib/libbz2.a
|
vinstall libbz2.a 644 usr/lib
|
||||||
ln -sf ../../lib/libbz2.so ${DESTDIR}/usr/lib/libbz2.so
|
vinstall bzlib.h 644 usr/include
|
||||||
|
|
||||||
install -Dm644 bzlib.h ${DESTDIR}/usr/include/bzlib.h
|
vinstall bzip2.1 644 usr/share/man/man1
|
||||||
|
|
||||||
install -Dm644 bzip2.1 ${DESTDIR}/usr/share/man/man1/bzip2.1
|
|
||||||
ln -sf bzip2.1 ${DESTDIR}/usr/share/man/man1/bunzip2.1
|
ln -sf bzip2.1 ${DESTDIR}/usr/share/man/man1/bunzip2.1
|
||||||
ln -sf bzip2.1 ${DESTDIR}/usr/share/man/man1/bzcat.1
|
ln -sf bzip2.1 ${DESTDIR}/usr/share/man/man1/bzcat.1
|
||||||
ln -sf bzip2.1 ${DESTDIR}/usr/share/man/man1/bzip2recover.1
|
ln -sf bzip2.1 ${DESTDIR}/usr/share/man/man1/bzip2recover.1
|
||||||
|
|
||||||
|
vinstall LICENSE 644 usr/share/licenses/bzip2
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue