summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Grapentin <andreas@grapentin.org>2018-02-02 16:07:08 +0100
committerAndreas Grapentin <andreas@grapentin.org>2018-02-02 16:07:08 +0100
commite6dd7587a1564e2dfb0790c63024f90ebdfeddd7 (patch)
treeafa29c003ab59f1bcb77b46aa33d392a8eaa86b9
parente90fb834d6dc4ff419183568f4510b039a971556 (diff)
pcr/cmix: updated to 14
-rw-r--r--pcr/cmix/PKGBUILD14
1 files changed, 5 insertions, 9 deletions
diff --git a/pcr/cmix/PKGBUILD b/pcr/cmix/PKGBUILD
index cda198c06..462f6e55d 100644
--- a/pcr/cmix/PKGBUILD
+++ b/pcr/cmix/PKGBUILD
@@ -1,15 +1,14 @@
# Maintainer: Luke R. <g4jc@openmailbox.org> GPG: rsa4096/3EAE8697
pkgname=cmix
-pkgver=12
+pkgver=14
pkgrel=1
pkgdesc="cmix is a lossless data compression program aimed at optimizing compression ratio at the cost of high CPU/memory usage. (Warning: At least 32GB of RAM is recommended to run cmix.)"
-arch=('i686' 'x86_64')
+arch=('i686' 'x86_64' 'armv7h')
url="http://www.byronknoll.com/cmix.html"
license=('GPL3')
-makedepends=('gcc')
source=("http://www.byronknoll.com/$pkgname-v$pkgver.zip")
-sha512sums=('22966f14529b40254b500b5a2261ecd8ba624cf8125e57c31c1b40a1c28224a020ca4b2edcd98a598fc485504fcf7980839d0c1282de76f491619612eff37edf')
+sha512sums=('5d80d20a46473f05c2aff67e9da58106bc8089626b0093c64d681ffe3ddb1f8802223fe86c66cd924914e1fbe5d5c5cd91c21ac8fd74573ee11fbaca06c68398')
build() {
cd $pkgname
@@ -18,9 +17,6 @@ build() {
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"
+ install -Dm755 "$srcdir/$pkgname/$pkgname" "$pkgdir/usr/bin/$pkgname"
+ install -Dm644 "$srcdir/$pkgname/COPYING" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}