mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
46 lines
1.4 KiB
Bash
46 lines
1.4 KiB
Bash
# Maintainer: Alexander Foremny <alexanderforemny@gmail.com>
|
|
# Modified by OpenPogo
|
|
|
|
pkgname=bzip2
|
|
pkgver=1.0.5
|
|
pkgrel=1
|
|
pkgdesc="A high-quality data compression program"
|
|
arch=(arm)
|
|
license=('custom')
|
|
url="http://sources.redhat.com/bzip2"
|
|
groups=('base')
|
|
depends=()
|
|
source=(http://www.bzip.org/$pkgver/bzip2-$pkgver.tar.gz)
|
|
md5sums=('3c15a0c8d1d3ee1c46a1634d00617b1a')
|
|
|
|
build() {
|
|
cd $srcdir/bzip2-$pkgver
|
|
|
|
# add large-file support
|
|
sed -e 's/^CFLAGS=\(.*\)$/CFLAGS=\1 \$(BIGFILES)/' -i ./Makefile-libbz2_so
|
|
|
|
make -f Makefile-libbz2_so || return 1
|
|
make bzip2recover libbz2.a || return 1
|
|
|
|
install -dm755 $pkgdir/opt/bin
|
|
install -m755 bzip2-shared $pkgdir/opt/bin/bzip2
|
|
install -m755 bzip2recover $pkgdir/opt/bin
|
|
ln -sf bzip2 $pkgdir/opt/bin/bunzip2
|
|
ln -sf bzip2 $pkgdir/opt/bin/bzcat
|
|
|
|
install -Dm755 libbz2.so.1.0.4 $pkgdir/opt/lib/libbz2.so.1.0.4
|
|
|
|
install -Dm755 libbz2.so.1.0.4 $pkgdir/opt/lib/libbz2.so.1.0.4
|
|
ln -s libbz2.so.1.0.4 $pkgdir/opt/lib/libbz2.so
|
|
ln -s libbz2.so.1.0.4 $pkgdir/opt/lib/libbz2.so.1
|
|
ln -s libbz2.so.1.0.4 $pkgdir/opt/lib/libbz2.so.1.0
|
|
|
|
install -Dm644 libbz2.a ${pkgdir}/opt/lib/libbz2.a
|
|
# ln -sf ../../lib/libbz2.so ${pkgdir}/opt/lib/libbz2.so
|
|
|
|
install -Dm644 bzlib.h $pkgdir/opt/include/bzlib.h
|
|
|
|
install -Dm644 $srcdir/${pkgname}-${pkgver}/LICENSE \
|
|
$pkgdir/opt/share/licenses/${pkgname}/LICENSE
|
|
}
|
|
|