blob: 06fef1e50e4b8e6038b65b0c44bb528aaa154b2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# Maintainer: Luis Aranguren <pizzaman@hotmail.com>
# Contributor: Kyle <kyle@gmx.ca>
pkgname=pcaudiolib-git
_gitname=pcaudiolib
pkgver=1.1.2.gd6a6b00 # determined from git origin
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' 'automake' 'autoconf')
provides=( pcaudiolib )
conflicts=( pcaudiolib )
source=('git+https://github.com/rhdunn/pcaudiolib.git')
md5sums=('SKIP')
pkgver() {
cd $_gitname
git describe --always | sed -e 's|v||' -e 's|-|.|g'
}
build() {
cd $_gitname
./autogen.sh
./configure --prefix=/usr
make
}
package() {
cd $_gitname
make DESTDIR="$pkgdir/" install
}
|