apulse: 0.1.12 -> 0.1.13

This commit is contained in:
Danny Rawlins 2020-05-13 19:58:36 +10:00
parent 19ee53b32b
commit 76d58dc62e
2 changed files with 9 additions and 14 deletions

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/V2nHhkUEe+0omjgpcIrcsC8CQ1qoctz21ys4dKj6pwa/w8AUI9GAoq/QAjfhYgYHuGJcGCHZ6kcor68bpTCXAM=
SHA256 (Pkgfile) = 37f850bf4e3ac4419dfc0b18d5e8ac835be82deb9981529fe0127fe90a73f22d
RWSE3ohX2g5d/bSdjTFIWe/YW7UywCDnOcrR9e/1Zc+qgUyadRzmpjo+vfSsUp0IIhpQRExy1P8Ihwm1yhMPfNEekKlo7ZYvSwg=
SHA256 (Pkgfile) = 1ec56448a07910b887bece1671e828096f0f553dadb928f0995f7a8453e2a5e4
SHA256 (.footprint) = f193ab1ccc514e0e0b47782a2dbb1d0873850a570a7d92cf67740af9658de005
SHA256 (v0.1.12.tar.gz) = cfcadfe971abd785ed3ca24e576fcbaade185525c1eda76daf32dbf298e52892
SHA256 (apulse-v0.1.13.tar.gz) = 9234ec4e10e408b9c01d5f4ea768ad1fc15494217c932db2c435202a9c7b5efd

View File

@ -1,23 +1,18 @@
# 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
# Depends on: alsa-lib cmake glib
name=apulse
version=0.1.12
version=0.1.13
release=1
source=(https://github.com/i-rinat/apulse/archive/v${version}.tar.gz)
source=(https://github.com/i-rinat/$name/archive/v$version/$name-v$version.tar.gz)
build() {
cd apulse-$version
mkdir build
cd build
cmake .. \
cmake -S$name-$version -Bbuild -GNinja \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release
make
make DESTDIR=$PKG install
cmake --build build
DESTDIR=$PKG cmake --build build --target install
}