summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD5
2 files changed, 5 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 0b71d470eac8..3cc93b68a1bb 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,13 +1,13 @@
pkgbase = libasn1c
pkgdesc = runtime library of Lev Walkin's asn1c split out as separate library
pkgver = 0.9.36
- pkgrel = 2
+ pkgrel = 3
url = https://cgit.osmocom.org/libasn1c
arch = i686
arch = x86_64
arch = aarch64
arch = armv7h
- license = GPL
+ license = BSD-2-Clause
depends = talloc
provides = libasn1c.so=1-64
conflicts = libasn1c-git
diff --git a/PKGBUILD b/PKGBUILD
index 7e892c2ebc61..cf62abd84b64 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,11 +3,11 @@
pkgname=libasn1c
pkgver=0.9.36
-pkgrel=2
+pkgrel=3
pkgdesc="runtime library of Lev Walkin's asn1c split out as separate library"
url="https://cgit.osmocom.org/libasn1c"
arch=('i686' 'x86_64' 'aarch64' 'armv7h')
-license=(GPL)
+license=('BSD-2-Clause')
depends=('talloc')
provides=('libasn1c.so=1-64')
conflicts=("${pkgname}-git")
@@ -25,6 +25,7 @@ build() {
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR=${pkgdir} install
+ install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
# vim:set ts=2 sw=2 et: