summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authoralextee2019-01-17 00:19:23 +0000
committeralextee2019-01-17 00:19:23 +0000
commit1def19f9614d502685cd72d642d22b6fc66d6604 (patch)
tree901cf978e9d6a974ac20be0b6c0b0f27c4856e1c
parent90a6768d849e87d8d51e78c4a35bdf94872130ff (diff)
downloadaur-1def19f9614d502685cd72d642d22b6fc66d6604.tar.gz
include icon subsmodule
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD11
2 files changed, 11 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 5731039f51e6..14f549e4ac3d 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = zrythm-git
pkgdesc = Free GNU/Linux music production system (DAW)
- pkgver = master
+ pkgver = r160.19293d0
pkgrel = 1
url = https://gitlab.com/alextee/zrythm
arch = x86_64
@@ -17,6 +17,8 @@ pkgbase = zrythm-git
provides = zrythm
conflicts = zrythm
source = zrythm::git+https://gitlab.com/alextee/zrythm.git
+ source = git+https://github.com/KDE/breeze-icons.git
+ md5sums = SKIP
md5sums = SKIP
pkgname = zrythm-git
diff --git a/PKGBUILD b/PKGBUILD
index 5a09639cec7b..9f2b203f0e95 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
_pkgname=zrythm
pkgname=$_pkgname-git
-pkgver=r141.668d754
+pkgver=r160.19293d0
pkgrel=1
pkgdesc="Free GNU/Linux music production system (DAW)"
arch=('x86_64')
@@ -12,8 +12,10 @@ provides=("$_pkgname")
conflicts=("$_pkgname")
depends=('gtk3' 'lv2' 'lilv' 'suil' 'jack' 'libsndfile' 'libsmf' 'libdazzle')
makedepends=('git')
-source=("$_pkgname::git+https://gitlab.com/alextee/zrythm.git")
-md5sums=('SKIP')
+source=("$_pkgname::git+https://gitlab.com/alextee/zrythm.git"
+ "git+https://github.com/KDE/breeze-icons.git")
+md5sums=('SKIP'
+ 'SKIP')
pkgver () {
cd "$srcdir/$_pkgname"
@@ -22,6 +24,9 @@ pkgver () {
prepare() {
cd "$srcdir/$_pkgname"
+ git submodule init
+ git config submodule."ext/breeze-icons".url "$srcdir/breeze-icons"
+ git submodule update
}
build() {