From 6063599739e81e95b16a471b8153bb8154d5591a Mon Sep 17 00:00:00 2001 From: Gaming4JC Date: Sat, 15 Aug 2015 15:39:43 -0400 Subject: adding cmix --- pcr/cmix/PKGBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 pcr/cmix/PKGBUILD diff --git a/pcr/cmix/PKGBUILD b/pcr/cmix/PKGBUILD new file mode 100644 index 000000000..e46b8d14f --- /dev/null +++ b/pcr/cmix/PKGBUILD @@ -0,0 +1,26 @@ +# Maintainer: Luke R. GPG: rsa4096/3EAE8697 + +pkgname=cmix +pkgver=7 +pkgrel=1 +pkgdesc="cmix is a lossless data compression program aimed at optimizing compression ratio at the cost of high CPU/memory usage." +arch=('i686' 'x86_64') +url="http://www.byronknoll.com/cmix.html" +license=('GPL3') +makedepends=('gcc') +source=("http://www.byronknoll.com/$pkgname-v$pkgver.zip") +sha512sums=('1c4f18b1fc81874d19ba136633c9b3896c1d87a1a25bcb972951b71756dcfe0ea57eb6a54ee4ce6928aaf185408e7d68262fde28d6750a7ea38272d687704df6') + +build() { + cd $pkgname + make +} + +package() { + cd $pkgname + msg "Install $pkgname in /usr/bin" + mkdir -p $pkgdir/usr/bin + install -D -m 755 "$srcdir/$pkgname/$pkgname" \ + "$pkgdir/usr/bin/$pkgname" + install -D -m0444 $srcdir/$pkgname/COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE" +} \ No newline at end of file -- cgit v1.2.3