blob: 2c8f35d812513a1f211309fd4a8288c9e67d4188 (
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
|
# Maintainer: detian <dehe_tian at outlook dot com>
# Contributor: Mark Wagie <mark dot wagie at tutanota dot com>
pkgname=audiorelay
pkgver=0.27.5
pkgrel=6
_jre_ver=17
pkgdesc="Stream your PC audio to your phone"
arch=('x86_64')
url="https://$pkgname.net"
license=('unknown')
depends=('alsa-lib' 'flac' 'harfbuzz' 'libogg' 'libpulse' "java-runtime>=${_jre_ver}" 'archlinux-java-run'
'libvorbis' 'libxau' 'libxcb' 'systemd-libs' 'xdg-utils') # 'opus' 'portaudio' 'rtaudio' 'libsamplerate'
source=("https://dl.audiorelay.net/setups/linux/$pkgname-$pkgver.tar.gz" "$pkgname.sh" "$pkgname.desktop")
install='audiorelay.install'
_install_path="/usr/share/java/audiorelay"
sha256sums=('c4854139a4bd21e7bf7881a7b6e21ebc4cfe823286783d4fb9ad4bf4edf8e8c7'
'4fd8aece2656e8bd8baabcc24b9b15325efeba07d45d840f96d1fb2d72c31762'
'069110739a70e19412280315eed84ccca59702ed3791daeda3cb9aa45f8bf030')
package() {
# install assets
install -d "$pkgdir"/usr/{bin,/share/{applications,pixmaps}}
install -Dm755 "$pkgname.desktop" "$pkgdir/usr/share/applications/"
install -Dm644 "$srcdir/lib/AudioRelay.png" "$pkgdir/usr/share/pixmaps/$pkgname.png"
# install startup script
install -Dm755 "$pkgname.sh" "$pkgdir/usr/bin/$pkgname"
# set APPDIR var for runtime
sed -i 's|APPDIR=|APPDIR=\"'$_install_path'\"|' "$pkgdir/usr/bin/$pkgname"
# install without bundled JVM
install -d "$pkgdir/$_install_path/misc"
install -Dm644 "$srcdir/lib/app/$pkgname.jar" "$pkgdir/$_install_path/"
install -Dm644 "$srcdir/lib/app/AudioRelay.cfg" "$pkgdir/$_install_path/misc"
# but install bundled native library
find "$srcdir/lib/runtime/lib/" \
-name 'libnative-*' \
-type f \
-exec install -Dm644 {} "$pkgdir/$_install_path/misc" \;
}
|