Package Details: audiorelay 0.27.5-6

Git Clone URL: https://aur.archlinux.org/audiorelay.git (read-only, click to copy)
Package Base: audiorelay
Description: Stream your PC audio to your phone
Upstream URL: https://audiorelay.net
Keywords: audio stream
Licenses: unknown
Submitter: yochananmarqos
Maintainer: detian (yochananmarqos)
Last Packager: detian
Votes: 11
Popularity: 0.183075
First Submitted: 2021-12-29 16:52 (UTC)
Last Updated: 2024-11-09 05:20 (UTC)

Dependencies (12)

Required by (0)

Sources (3)

Latest Comments

« First ‹ Previous 1 2 3

yochananmarqos commented on 2023-04-20 21:36 (UTC)

@detian: I don't even use this, have fun!

detian commented on 2023-04-20 19:07 (UTC) (edited on 2023-04-20 19:12 (UTC) by detian)

I have done some changes to make audiorelay more integrated and removed bundled JVM like:

$ tree /usr/share/java/audiorelay/

/usr/share/java/audiorelay/
├── audiorelay.jar
└── misc
    ├── AudioRelay.cfg
    ├── libnative-libsamplerate.so
    ├── libnative-opus.so
    ├── libnative-portaudio.so
    └── libnative-rtaudio.so

2 directories, 6 files

$ cat /bin/audiorelay

#!/bin/bash
APPDIR="/usr/share/java/audiorelay"

while IFS='=' read -r key value; do
  case $key in
    app.classpath) app_classpath=$value ;;
    app.mainclass) app_mainclass=$value ;;
    java-options) java_options+=("$value") ;;
  esac
done < "$APPDIR/misc/AudioRelay.cfg"

archlinux-java-run -a 17 -- "${java_options[*]}" \
    -Djava.library.path=$APPDIR/misc \
    -cp "$(eval echo "$app_classpath")" "$app_mainclass"

modified file https://github.com/detiam/audiorelay-pkgbuild could you merge them here? @yochananmarqos

yochananmarqos commented on 2023-03-01 17:00 (UTC)

@eggz: It seems to work fine without it, I've dropped it.

<deleted-account> commented on 2023-03-01 16:10 (UTC)

FYI: libwrap is goners on AUR

yochananmarqos commented on 2022-11-05 15:05 (UTC)

@detian: It was working, not sure what caused the issue. I'll use the bundled JVM for now.

detian commented on 2022-11-05 11:54 (UTC)

Can't load audio device in latest version https://community.audiorelay.net/t/linux-cant-load-audio-device/1309

after some tries i find that you can use the bundled JVM instead of the system one to fix it, just remove the follow in PKGBUILD

  # Remove bundled JVM
  rm -rf "$pkgdir/opt/$pkgname/lib/runtime/"*

  # Symlink system JVM
  ln -s "/usr/lib/jvm/java-${_jre_ver}-openjdk/"* "$pkgdir/opt/$pkgname/lib/runtime/"

don't know why,but works.

yochananmarqos commented on 2022-10-31 16:34 (UTC)

@aqyx: Oops. Fixed.

aqyx commented on 2022-10-31 03:07 (UTC)

Failed to find JVM in "/opt/audiorelay/lib/runtime" directory. most recent pkgbuild

yochananmarqos commented on 2022-10-24 15:15 (UTC)

@proledatarian: No, it doesn't, check my commits. Your PKGBUILD is out of date.

dataprolet commented on 2022-10-24 10:10 (UTC)

The recent update to jdk19 breaks the dependency for jdk18 on this package and prevents updating.