Update pkgdesc; do not call ldconfig from waf
Signed-off-by: Christopher Arndt <chris@chrisarndt.de>
This commit is contained in:
parent
8c2dd66dc8
commit
cfacd03962
2 changed files with 8 additions and 4 deletions
4
.SRCINFO
4
.SRCINFO
|
@ -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
|
||||
|
|
8
PKGBUILD
8
PKGBUILD
|
@ -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() {
|
||||
|
|
Loading…
Reference in a new issue