apulse: moved from opt; marked unmaintained

This commit is contained in:
Tim Biermann 2023-08-27 18:00:40 +02:00
parent 333e341278
commit 457564ef63
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 48 additions and 0 deletions

18
apulse/.footprint Normal file
View File

@ -0,0 +1,18 @@
drwxr-xr-x root/root etc/
drwxr-xr-x root/root etc/revdep.d/
-rw-r--r-- root/root etc/revdep.d/apulse
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/apulse
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/apulse/
lrwxrwxrwx root/root usr/lib/apulse/libpulse-mainloop-glib.so -> libpulse-mainloop-glib.so.0
-rwxr-xr-x root/root usr/lib/apulse/libpulse-mainloop-glib.so.0
lrwxrwxrwx root/root usr/lib/apulse/libpulse-simple.so -> libpulse-simple.so.0
-rwxr-xr-x root/root usr/lib/apulse/libpulse-simple.so.0
lrwxrwxrwx root/root usr/lib/apulse/libpulse.so -> libpulse.so.0
-rwxr-xr-x root/root usr/lib/apulse/libpulse.so.0
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/
-rw-r--r-- root/root usr/share/man/man1/apulse.1.gz

5
apulse/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF37mbVPvsffneT9u1OL40ohTbhucZWHypLJP9RxbscthgNz4roi/e0Qs36an6Kav9QbWNriC5ZTmImz02tqLyfgU=
SHA256 (Pkgfile) = dd6aa1832ddc527c2dd57d80e22545a7df66ef55c83e8fc10ddc155e5147c74b
SHA256 (.footprint) = 88a7a19b9a3fc9068b102b09e3f228e5a02651302be28e1fcb7a4ae4b46b430b
SHA256 (apulse-v0.1.13.tar.gz) = 9234ec4e10e408b9c01d5f4ea768ad1fc15494217c932db2c435202a9c7b5efd

25
apulse/Pkgfile Normal file
View File

@ -0,0 +1,25 @@
# Description: PulseAudio emulation for ALSA
# URL: https://github.com/i-rinat/apulse
# Maintainer: unmaintained
# Depends on: alsa-lib glib
name=apulse
version=0.1.13
release=1
source=(https://github.com/i-rinat/apulse/archive/v$version/$name-v$version.tar.gz)
build() {
cmake -S $name-$version -B build -G Ninja \
-D CMAKE_INSTALL_PREFIX=/usr \
-D CMAKE_INSTALL_LIBDIR=lib \
-D CMAKE_BUILD_TYPE=Release \
-D CMAKE_CXX_FLAGS_RELEASE="$CXXFLAGS" \
-D CMAKE_C_FLAGS_RELEASE="$CFLAGS" \
-Wno-dev
cmake --build build
DESTDIR=$PKG cmake --install build
install -d $PKG/etc/revdep.d
echo '/usr/lib/apulse' > $PKG/etc/revdep.d/apulse
}