summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorLuis Aranguren2020-02-15 12:21:41 +1100
committerLuis Aranguren2020-02-15 12:21:41 +1100
commit9c5e1f2f24c54e74652d69a50786452bfd60dc33 (patch)
tree1c84c716e36af38c6928ecea56f0a20b5701621f /PKGBUILD
parentea5ba611049c7810f38238bc001fb0818078b8ea (diff)
downloadaur-9c5e1f2f24c54e74652d69a50786452bfd60dc33.tar.gz
Added missing makedepends automake, autoconf
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD7
1 files changed, 3 insertions, 4 deletions
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'
}