summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD7
2 files changed, 6 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index b5da9fb95494..b5fceb14b99e 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = pcaudiolib-git
pkgdesc = Portable C Audio Library (git version)
pkgver = 1.1.2.gd6a6b00
- pkgrel = 2
+ pkgrel = 3
url = https://github.com/rhdunn/pcaudiolib
arch = aarch64
arch = armv6h
@@ -10,6 +10,8 @@ pkgbase = pcaudiolib-git
arch = x86_64
license = GPL3
makedepends = git
+ makedepends = automake
+ makedepends = autoconf
optdepends = alsa-lib: ALSA output support
optdepends = pulseaudio: Pulseaudio output support
provides = pcaudiolib
diff --git a/PKGBUILD b/PKGBUILD
index 66c3137a1ad7..06fef1e50e4b 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,15 +3,15 @@
pkgname=pcaudiolib-git
_gitname=pcaudiolib
pkgver=1.1.2.gd6a6b00 # determined from git origin
-pkgrel=2
+pkgrel=3
pkgdesc="Portable C Audio Library (git version)"
arch=('aarch64' 'armv6h' 'armv7h' 'i686' 'x86_64')
url="https://github.com/rhdunn/pcaudiolib"
license=('GPL3')
depends=()
optdepends=('alsa-lib: ALSA output support'
- 'pulseaudio: Pulseaudio output support')
-makedepends=('git')
+ 'pulseaudio: Pulseaudio output support')
+makedepends=('git' 'automake' 'autoconf')
provides=( pcaudiolib )
conflicts=( pcaudiolib )
source=('git+https://github.com/rhdunn/pcaudiolib.git')
@@ -19,7 +19,6 @@ md5sums=('SKIP')
pkgver() {
cd $_gitname
- # Use the tag of the last commit
git describe --always | sed -e 's|v||' -e 's|-|.|g'
}