Package Details: subsonic 6.1.6-1

Git Clone URL: https://aur.archlinux.org/subsonic.git (read-only, click to copy)
Package Base: subsonic
Description: A free, web-based media streamer and jukebox.
Upstream URL: http://subsonic.org/
Licenses: custom
Conflicts: subsonic
Submitter: robertfoster
Maintainer: robertfoster
Last Packager: robertfoster
Votes: 70
Popularity: 0.000000
First Submitted: 2010-03-26 16:48 (UTC)
Last Updated: 2019-11-18 21:11 (UTC)

Dependencies (1)

Required by (0)

Sources (2)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 Next › Last »

<deleted-account> commented on 2011-09-19 19:54 (UTC)

Why not make this depend on openjdk6 instead of jre? From subsonic installation's page one might assume (see the different linux installation instructions at http://www.subsonic.org/pages/installation.jsp) that openjdk6 works fine. And openjdk6 is the recommended java implementation in Arch...

<deleted-account> commented on 2011-08-17 14:29 (UTC)

The new /var/subsonic/subsonic.sh has the JAVA_HOME variable set and so subsonic wasn't starting for me after the upgrade from 4.4 to 4.5. Well, more specifically, the new subsonic.sh was JAVA_HOME variable pointed to /opt/java , but that wasn't correct for my system. I had to change it to /opt/java/jre to get the process to start.

trishika commented on 2011-08-12 05:48 (UTC)

can you change jre to java-runtime ?

<deleted-account> commented on 2011-08-11 14:10 (UTC)

PKGBUILD for 4.5-1 # Maintainer: M0Rf30 <morf3089@gmail.com> pkgname=subsonic pkgver=4.5 pkgrel=1 pkgdesc="Subsonic is a free, web-based media streamer and jukebox." arch=('i686' 'x86_64') url="http://subsonic.org/" license=('GPL') depends=('jre') conflicts=('subsonic-beta') source=(http://prdownloads.sourceforge.net/subsonic/${pkgname}-${pkgver}-standalone.tar.gz 'subsonic' 'subsonic.rc') backup=('var/subsonic/subsonic.sh') md5sums=('14335df737219ffb39ba00ee562c92f3' '43b8000cf7d5beb83bb9d0ca37535b0f' 'fe298af83a38e4e3a794f3be18ca6af6') install=$pkgname.install build() { cd ${srcdir} mkdir -p $pkgdir/var/subsonic mkdir -p $pkgdir/usr/bin mkdir -p $pkgdir/etc/rc.d cp * $pkgdir/var/subsonic rm $pkgdir/var/subsonic/{subsonic,subsonic.rc,subsonic.bat,${pkgname}-${pkgver}-standalone.tar.gz} cp $srcdir/subsonic $pkgdir/usr/bin cp $srcdir/subsonic.rc $pkgdir/etc/rc.d/subsonic }

<deleted-account> commented on 2011-06-13 22:59 (UTC)

is there a way to get this to run as a non-root user?

<deleted-account> commented on 2011-05-28 01:01 (UTC)

Thanks for this, works fine. It seemed content with ffmpeg, but I had to symlink lame. ln -sf /usr/bin/lame /var/subsonic/transcode/lame Worked great.

risk commented on 2011-05-24 19:16 (UTC)

also, it seems that lame and ffmpeg should be present in $SUBSONIC_HOME/transcode maybe you could add those symlinks to the package ?

risk commented on 2011-05-24 18:35 (UTC)

missing deps, ffmpeg and lame.

<deleted-account> commented on 2011-05-08 11:58 (UTC)

Thanks Morfeo! I tested with "openjdk6" instead of "jre" and works great.

hoban commented on 2011-03-21 23:33 (UTC)

I've just spent some time making some fixes that I'd appreciate it if you incorporated into your package. Firstly, because you are using /usr/bin/subsonic (which you install) as your DAEMON, the DAEMON_ARGS, if used (which requires adding it to the start portion of your case statement) doesn't get used. Additionally, running the script with a start argument multiple times would start multiple instances of subsonic. Also, running the script with a stop argument has been fixed, and running it with a stop argument multiple times will now report FAIL if subsonic isn't killed because it wasn't running to begin with. I propose using the following /etc/rc.d/subsonic which just makes a few tweaks to the work of Tad2much and yourself. Please see the following: http://pastie.org/1697791