Upstream repository changed again and now uses git submodule for waflib

Signed-off-by: Christopher Arndt <chris@chrisarndt.de>
This commit is contained in:
Christopher Arndt 2019-05-16 16:52:24 +02:00
parent 6695146c16
commit 12d7b7a2ac
3 changed files with 26 additions and 14 deletions

View file

@ -1,26 +1,28 @@
pkgbase = lv2-git pkgbase = lv2-git
pkgdesc = A standard for plugins and matching host applications, mainly targeted at audio processing and generation. pkgdesc = A standard for plugins and matching host applications, mainly targeted at audio processing and generation.
pkgver = 1.16.0.r1120.0fa4d48 pkgver = 1.16.2.r1186.18a9aef
pkgrel = 1 pkgrel = 1
url = http://lv2plug.in/ url = http://lv2plug.in/
arch = i686 arch = i686
arch = x86_64 arch = x86_64
license = custom:ISC license = custom:ISC
makedepends = git makedepends = git
makedepends = python2 makedepends = python
makedepends = libsndfile makedepends = libsndfile
makedepends = gtk2 makedepends = gtk2
optdepends = libsndfile: example sampler plugin optdepends = libsndfile: example sampler plugin
optdepends = gtk2: example scope plugin optdepends = gtk2: example scope plugin
optdepends = python: lv2specgen script optdepends = python: lv2specgen script
provides = lv2 provides = lv2
provides = lv2=1.16.0 provides = lv2=1.16.2
provides = lv2core provides = lv2core
provides = lv2-svn provides = lv2-svn
conflicts = lv2 conflicts = lv2
conflicts = lv2-svn conflicts = lv2-svn
replaces = lv2core replaces = lv2core
source = lv2::git+http://lv2plug.in/git/lv2.git source = lv2::git+https://gitlab.com/lv2/lv2.git
source = autowaf::git+https://gitlab.com/drobilla/autowaf.git
md5sums = SKIP
md5sums = SKIP md5sums = SKIP
pkgname = lv2-git pkgname = lv2-git

7
.gitignore vendored
View file

@ -1,6 +1,7 @@
lv2 autowaf/
src lv2/
pkg src/
pkg/
lv2-git-*.tar.xz lv2-git-*.tar.xz
lv2-git-*.src.tar.gz lv2-git-*.src.tar.gz
.AURINFO .AURINFO

View file

@ -3,21 +3,22 @@
_pkgname=lv2 _pkgname=lv2
pkgname="${_pkgname}-git" pkgname="${_pkgname}-git"
pkgver=1.16.0.r1120.0fa4d48 pkgver=1.16.2.r1186.18a9aef
pkgrel=1 pkgrel=1
pkgdesc="A standard for plugins and matching host applications, mainly targeted at audio processing and generation." pkgdesc="A standard for plugins and matching host applications, mainly targeted at audio processing and generation."
arch=('i686' 'x86_64') arch=('i686' 'x86_64')
url="http://lv2plug.in/" url="http://lv2plug.in/"
license=('custom:ISC') license=('custom:ISC')
makedepends=('git' 'python2' 'libsndfile' 'gtk2') makedepends=('git' 'python' 'libsndfile' 'gtk2')
optdepends=('libsndfile: example sampler plugin' optdepends=('libsndfile: example sampler plugin'
'gtk2: example scope plugin' 'gtk2: example scope plugin'
'python: lv2specgen script') 'python: lv2specgen script')
provides=("${_pkgname}" "${_pkgname}=${pkgver//.r*/}" 'lv2core' "${_pkgname}-svn") provides=("${_pkgname}" "${_pkgname}=${pkgver//.r*/}" 'lv2core' "${_pkgname}-svn")
conflicts=("${_pkgname}" "${_pkgname}-svn") conflicts=("${_pkgname}" "${_pkgname}-svn")
replaces=('lv2core') replaces=('lv2core')
source=("${_pkgname}::git+http://lv2plug.in/git/lv2.git") source=("${_pkgname}::git+https://gitlab.com/lv2/lv2.git"
md5sums=('SKIP') 'autowaf::git+https://gitlab.com/drobilla/autowaf.git')
md5sums=('SKIP' 'SKIP')
pkgver() { pkgver() {
cd "${srcdir}/${_pkgname}" cd "${srcdir}/${_pkgname}"
@ -25,16 +26,24 @@ pkgver() {
echo $(awk -F "'" '/^VERSION/{print $2}' wscript).r$(git rev-list --count HEAD).$(git rev-parse --short HEAD) echo $(awk -F "'" '/^VERSION/{print $2}' wscript).r$(git rev-list --count HEAD).$(git rev-parse --short HEAD)
} }
prepare() {
cd "${srcdir}/${_pkgname}"
git submodule init
git config submodule.waflib.url "${srcdir}/autowaf"
git submodule update
}
build() { build() {
cd "${srcdir}/${_pkgname}" cd "${srcdir}/${_pkgname}"
python2 waf configure --prefix=/usr python waf configure --prefix=/usr
python2 waf build $MAKEFLAGS python waf build $MAKEFLAGS
} }
package() { package() {
cd "${srcdir}/${_pkgname}" cd "${srcdir}/${_pkgname}"
python2 waf install --destdir="$pkgdir" python waf install --destdir="$pkgdir"
install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
} }