summaryrefslogtreecommitdiff
path: root/pcr/cmix
diff options
context:
space:
mode:
Diffstat (limited to 'pcr/cmix')
-rw-r--r--pcr/cmix/PKGBUILD26
1 files changed, 26 insertions, 0 deletions
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. <g4jc@openmailbox.org> 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