summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Biggers2016-10-22 14:47:54 -0700
committerEric Biggers2016-10-22 14:50:54 -0700
commit6cebacf816017d933956ba1608ecf08f919510d6 (patch)
tree54ecb14a745948c4668850f5a23a72da0d244147
parent76600d8656efffbad7786758346824c1778adf15 (diff)
downloadaur-6cebacf816017d933956ba1608ecf08f919510d6.tar.gz
Fix namcap warnings
-rw-r--r--.SRCINFO5
-rw-r--r--PKGBUILD9
2 files changed, 9 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 7223806d1fde..12ca1a8ab07d 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,13 +1,14 @@
# Generated by mksrcinfo v8
-# Sat Oct 22 21:44:13 UTC 2016
+# Sat Oct 22 21:50:45 UTC 2016
pkgbase = libdeflate-git
pkgdesc = Heavily optimized library for DEFLATE/zlib/gzip (de)compression
pkgver = 0.5.6.g1cc88c6
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/ebiggers/libdeflate
arch = i686
arch = x86_64
license = custom
+ depends = glibc
provides = libdeflate
conflicts = libdeflate
replaces = libdeflate
diff --git a/PKGBUILD b/PKGBUILD
index b202371318d5..a059225d4009 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,11 +2,12 @@
pkgname=libdeflate-git
pkgver=0.5.6.g1cc88c6
-pkgrel=1
+pkgrel=2
pkgdesc='Heavily optimized library for DEFLATE/zlib/gzip (de)compression'
arch=('i686' 'x86_64')
url='https://github.com/ebiggers/libdeflate'
license=('custom')
+depends=('glibc')
source=('git+https://github.com/ebiggers/libdeflate.git')
sha256sums=('SKIP')
conflicts=('libdeflate')
@@ -32,6 +33,8 @@ package() {
install -Dm755 $prog "$pkgdir/usr/bin/libdeflate-$prog"
done
ln "$pkgdir/usr/bin/libdeflate-gzip" "$pkgdir/usr/bin/libdeflate-gunzip"
- install -Dm644 -t "$pkgdir/usr/share/doc/libdeflate" \
- README* COPYING* NEWS*
+ install -Dm644 -t "$pkgdir/usr/share/doc/$pkgname" \
+ README* NEWS*
+ install -Dm644 -t "$pkgdir/usr/share/licenses/$pkgname" \
+ COPYING*
}