summaryrefslogtreecommitdiff
path: root/community/pigz
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-02-03 23:15:07 +0000
committerroot <root@rshg054.dnsready.net>2012-02-03 23:15:07 +0000
commitde078a89b9e3a45b6b2e3f0c9d866962e5125ba3 (patch)
tree73a6a95927c514dedab1508b2a9a8a3f58e2f1db /community/pigz
parent22e5f5bf64eba5c65674eeb3a8167de2854dbe0e (diff)
Fri Feb 3 23:15:07 UTC 2012
Diffstat (limited to 'community/pigz')
-rwxr-xr-xcommunity/pigz/PKGBUILD18
1 files changed, 9 insertions, 9 deletions
diff --git a/community/pigz/PKGBUILD b/community/pigz/PKGBUILD
index b379fe2ea..cc1e07c26 100755
--- a/community/pigz/PKGBUILD
+++ b/community/pigz/PKGBUILD
@@ -3,7 +3,7 @@
# Contributor: Stefan Husmann <stefan-husmann@t-online.de>
pkgname=pigz
-pkgver=2.1.7
+pkgver=2.2.3
pkgrel=1
pkgdesc="Parallel implementation of the gzip file compressor"
arch=('i686' 'x86_64')
@@ -11,28 +11,28 @@ url="http://www.zlib.net/pigz/"
license=('custom')
depends=('zlib')
source=(http://www.zlib.net/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('a09e1097fdc05ac0fff763bdb4d2d5e4')
+md5sums=('8330a6c6a3e5f1954687aaba4b973a6f')
build() {
- cd "${srcdir}/$pkgname"
- sed -i s/"CFLAGS=".*/"CFLAGS=${CFLAGS}"/g Makefile
+ cd "${srcdir}/$pkgname-$pkgver"
+ #sed -i s/"CFLAGS=".*/"CFLAGS=${CFLAGS}"/g Makefile
make
}
package() {
- cd "${srcdir}/$pkgname"
+ cd "${srcdir}/$pkgname-$pkgver"
- install -Dm755 "${srcdir}"/${pkgname}/${pkgname} \
+ install -Dm755 "${srcdir}"/${pkgname}-$pkgver/${pkgname} \
"${pkgdir}"/usr/bin/${pkgname}
pushd "${pkgdir}"/usr/bin
ln -s pigz unpigz
popd
- install -Dm644 "${srcdir}"/${pkgname}/${pkgname}.1 \
+ install -Dm644 "${srcdir}"/${pkgname}-$pkgver/${pkgname}.1 \
"${pkgdir}"/usr/share/man/man1/${pkgname}.1
- install -Dm644 "${srcdir}"/${pkgname}/${pkgname}.pdf \
+ install -Dm644 "${srcdir}"/${pkgname}-$pkgver/${pkgname}.pdf \
"${pkgdir}"/usr/share/doc/${pkgname}/${pkgname}.pdf
- install -Dm644 "${srcdir}"/${pkgname}/README \
+ install -Dm644 "${srcdir}"/${pkgname}-$pkgver/README \
"${pkgdir}"/usr/share/licenses/${pkgname}/README
}