blob: 6a16bbb10a0736dec1dc70bbbb7ecbc306c96553 (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
# Maintainer: Vincent Grande <shoober420@gmail.com>
# Contributor: David Runge <dvzrv@archlinux.org>
# Contributor: Tobias Powalowski <tpowa@archlinux.org>
# Contributor: judd <jvinet@zeroflux.org>
pkgname=alsa-utils-git
pkgver=1.2.4
pkgrel=1
pkgdesc="Advanced Linux Sound Architecture - Utilities"
arch=('x86_64')
url="https://www.alsa-project.org"
license=('GPL2')
depends=('glibc' 'pciutils' 'psmisc')
makedepends=('alsa-lib' 'docbook-xsl' 'fftw' 'libsamplerate' 'ncurses'
'python-docutils' 'systemd' 'xmlto')
optdepends=('fftw: for alsabat')
provides=(alsa-utils)
conflicts=(alsa-utils)
# we require /var/lib/alsa for state file
options=(emptydirs)
source=("git+https://github.com/alsa-project/alsa-utils.git")
sha512sums=('SKIP')
#validpgpkeys=('F04DF50737AC1A884C4B3D718380596DA6E59C91') # ALSA Release Team (Package Signing Key v1) <release@alsa-project.org>
pkgver() {
cd alsa-utils
git describe --tags | sed 's/-/+/g'
}
prepare() {
cd alsa-utils
autoreconf -vfi
}
build() {
cd alsa-utils
./configure --prefix=/usr \
--disable-alsaconf \
--sbindir=/usr/bin \
--with-udev-rules-dir=/usr/lib/udev/rules.d \
--with-systemdsystemunitdir=/usr/lib/systemd/system
make
}
package() {
depends+=('libasound.so' 'libatopology.so' 'libformw.so' 'libmenuw.so'
'libncursesw.so' 'libpanelw.so' 'libsamplerate.so')
cd alsa-utils
make DESTDIR="${pkgdir}" install
install -vDm 644 README.md -t "${pkgdir}/usr/share/doc/alsa-utils"
# dir where to save ALSA state
install -d "${pkgdir}/var/lib/alsa"
}
|