Update pkgdesc; do not call ldconfig from waf

Signed-off-by: Christopher Arndt <chris@chrisarndt.de>
This commit is contained in:
Christopher Arndt 2019-10-20 12:12:18 +02:00
parent 8c2dd66dc8
commit cfacd03962
2 changed files with 8 additions and 4 deletions

View file

@ -1,6 +1,6 @@
pkgbase = sord-git
pkgdesc = A lightweight C library for storing RDF statements in memory
pkgver = 0.16.2.r408.5894971
pkgdesc = Lightweight C library for storing RDF statements in memory (git version)
pkgver = 0.16.2.r412.9c11543
pkgrel = 1
url = http://drobilla.net/software/sord/
install = sord.install

View file

@ -2,9 +2,9 @@
_pkgname=sord
pkgname="${_pkgname}-git"
pkgver=0.16.2.r408.5894971
pkgver=0.16.2.r412.9c11543
pkgrel=1
pkgdesc="A lightweight C library for storing RDF statements in memory"
pkgdesc="Lightweight C library for storing RDF statements in memory (git version)"
arch=('i686' 'x86_64')
url="http://drobilla.net/software/sord/"
license=('custom:ISC')
@ -17,6 +17,7 @@ source=("${_pkgname}::git+https://gitlab.com/drobilla/sord.git"
'autowaf::git+https://gitlab.com/drobilla/autowaf.git')
md5sums=('SKIP' 'SKIP')
pkgver() {
cd "${srcdir}/${_pkgname}"
@ -30,6 +31,9 @@ prepare() {
git submodule init
git config submodule.waflib.url "${srcdir}/autowaf"
git submodule update
# remove local call to ldconfig
sed -i "/ldconfig/d" wscript
}
build() {