diff options
author | Danny Rawlins <monster.romster@gmail.com> | 2019-03-17 13:23:44 +1100 |
---|---|---|
committer | Danny Rawlins <monster.romster@gmail.com> | 2019-03-17 20:53:31 +1100 |
commit | c12c4aa9588793aa05610cdef219770c941bde9e (patch) | |
tree | f28596b09aa4fe5ddee705f0f0585364804fff59 /apulse/Pkgfile | |
parent | 58c2342f3a9ad3ab1aadba1684ad436e91c0abba (diff) | |
download | opt-c12c4aa9588793aa05610cdef219770c941bde9e.tar.gz opt-c12c4aa9588793aa05610cdef219770c941bde9e.tar.xz |
apulse: initial import
Diffstat (limited to 'apulse/Pkgfile')
-rw-r--r-- | apulse/Pkgfile | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/apulse/Pkgfile b/apulse/Pkgfile new file mode 100644 index 000000000..70665f73a --- /dev/null +++ b/apulse/Pkgfile @@ -0,0 +1,23 @@ +# Description: PulseAudio emulation for ALSA. +# URL: https://github.com/i-rinat/apulse +# Maintainer: Danny Rawlins, crux at romster dot me +# Depends on: cmake glib alsa-lib + +name=apulse +version=0.1.12 +release=1 +source=(https://github.com/i-rinat/apulse/archive/v${version}.tar.gz) + +build() { + cd apulse-$version + + mkdir build + cd build + + cmake .. \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_BUILD_TYPE=Release + + make + make DESTDIR=$PKG install +} |