diff --git a/src/zpaq/.SRCINFO b/src/zpaq/.SRCINFO new file mode 100644 index 0000000..90f724e --- /dev/null +++ b/src/zpaq/.SRCINFO @@ -0,0 +1,17 @@ +# Generated by mksrcinfo v8 +# Fri Aug 19 18:47:26 UTC 2016 +pkgbase = zpaq + pkgdesc = Programmable file compressor, library and utilities. Based on the PAQ compression algorithm + pkgver = 7.15 + pkgrel = 1 + url = http://mattmahoney.net/dc/zpaq.html + arch = i686 + arch = x86_64 + license = custom + license = MIT + makedepends = perl + source = http://mattmahoney.net/dc/zpaq715.zip + sha512sums = 4cddcc04dff5e9dceb7138cf9e82b718b696048368ff494339f877d93e4423ed7959c0cfb2e30ba7dcbcdd6bbd59fa1021ceaca6d51e3180d8034b7a3997c265 + +pkgname = zpaq + diff --git a/src/zpaq/PKGBUILD b/src/zpaq/PKGBUILD new file mode 100644 index 0000000..875e4a6 --- /dev/null +++ b/src/zpaq/PKGBUILD @@ -0,0 +1,53 @@ +# Maintainer: Marco Schulze +# Contributor: TuxSpirit +# Contributor: Jan Stępień + + +pkgname=zpaq +pkgdesc='Programmable file compressor, library and utilities. Based on the PAQ compression algorithm' +url='http://mattmahoney.net/dc/zpaq.html' +pkgver=7.15 +pkgrel=1 + +_zpaq_ver=715 + +arch=(i686 x86_64) +license=(custom MIT) +makedepends=(perl) + +source=(http://mattmahoney.net/dc/zpaq${_zpaq_ver}.zip) +sha512sums=('4cddcc04dff5e9dceb7138cf9e82b718b696048368ff494339f877d93e4423ed7959c0cfb2e30ba7dcbcdd6bbd59fa1021ceaca6d51e3180d8034b7a3997c265') + +build() +{ + cd "$srcdir" + + if [ -z "$CC" ] + then + CC=gcc + fi + if [ -z "$CXX" ] + then + CXX=g++ + fi + + msg 'Building libzpaq' + $CXX $CXXFLAGS $LDFLAGS -fPIC -O3 -shared -Dunix -DNDEBUG libzpaq.cpp -o libzpaq.so + + msg 'Building zpaq' + $CXX ${CXXFLAGS/-flto} ${LDFLAGS/-flto} -O3 -pthread -Dunix -DNDEBUG zpaq.cpp -L. -lzpaq -o zpaq + + msg 'Building man page' + pod2man zpaq.pod zpaq.1 + gzip -9 zpaq.1 +} + + +package() +{ + install -Dm 644 libzpaq.h "$pkgdir/usr/include/libzpaq.h" + install -Dm 644 libzpaq.so "$pkgdir/usr/lib/libzpaq.so" + install -Dm 755 zpaq "$pkgdir/usr/bin/zpaq" + install -Dm 644 zpaq.1.gz "$pkgdir/usr/share/man/man1/zpaq.1.gz" + install -Dm 644 COPYING "$pkgdir/usr/share/licenses/${pkgname}/LICENSE" +}