summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher Arndt2020-07-10 00:11:35 +0200
committerChristopher Arndt2020-07-10 00:11:35 +0200
commitf9ea5de28ec161f5a08ad49855ef234a0a4f36c6 (patch)
tree712d831da70af3bc1da0726e7f381d3d91c6b3de
parent3a5fe08eb9fb0bf2d7b5b802d31edf8867d5e04e (diff)
downloadaur-f9ea5de28ec161f5a08ad49855ef234a0a4f36c6.tar.gz
Add missing 'alsa-lib' dependency; update pkgdesc
-rw-r--r--.SRCINFO7
-rw-r--r--.gitignore3
-rw-r--r--PKGBUILD7
3 files changed, 8 insertions, 9 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 6fe3878eaf21..ce4c116e461e 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = seq66-git
- pkgdesc = A live-looping sequencer with an interface similar to hardware sequencers
- pkgver = 0.90.0.r3.e8c865e
+ pkgdesc = A live-looping sequencer with an Qt graphical interface (git version)
+ pkgver = 0.90.3.r181.70e9302
pkgrel = 1
url = https://github.com/ahlstromcj/seq66
arch = i686
@@ -8,10 +8,11 @@ pkgbase = seq66-git
groups = pro-audio
license = GPL2
makedepends = git
+ depends = alsa-lib
depends = jack
depends = qt5-base
provides = seq66
- provides = seq66=0.90.0
+ provides = seq66=0.90.3
conflicts = seq66
source = seq66::git+https://github.com/ahlstromcj/seq66.git
md5sums = SKIP
diff --git a/.gitignore b/.gitignore
index d9251db86a22..bd2d61373245 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,7 +1,6 @@
-dpf/
seq66/
pkg/
src/
-.AURINFO
seq66-git-*.tar.xz
+seq66-git-*.tar.zst
seq66-git-*.src.tar.gz
diff --git a/PKGBUILD b/PKGBUILD
index 892965b23454..45d274a8bac7 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,13 +2,13 @@
_pkgname=seq66
pkgname="${_pkgname}-git"
-pkgver=0.90.0.r3.e8c865e
+pkgver=0.90.3.r181.70e9302
pkgrel=1
-pkgdesc="A live-looping sequencer with an interface similar to hardware sequencers"
+pkgdesc="A live-looping sequencer with an Qt graphical interface (git version)"
arch=('i686' 'x86_64')
url="https://github.com/ahlstromcj/seq66"
license=('GPL2')
-depends=('jack' 'qt5-base')
+depends=('alsa-lib' 'jack' 'qt5-base')
makedepends=('git')
groups=('pro-audio')
provides=("${_pkgname}" "${_pkgname}=${pkgver//.r*/}")
@@ -20,7 +20,6 @@ pkgver() {
cd "${srcdir}/${_pkgname}"
local ver=$(tail -n 1 VERSION)
- # replace alpha chars with a dot
echo "$ver.r$(git rev-list --count HEAD).$(git rev-parse --short HEAD)"
}