Package Details: plex-media-server-plexpass 1.40.2.8395-1

Git Clone URL: https://aur.archlinux.org/plex-media-server-plexpass.git (read-only, click to copy)
Package Base: plex-media-server-plexpass
Description: The back-end media server component of Plex.
Upstream URL: https://plex.tv/
Keywords: DLNA
Licenses: custom
Conflicts: plex-media-server
Provides: plex-media-server
Submitter: miffe
Maintainer: fryfrog (tixetsal)
Last Packager: fryfrog
Votes: 141
Popularity: 0.150891
First Submitted: 2014-10-16 20:13 (UTC)
Last Updated: 2024-04-18 21:47 (UTC)

Latest Comments

« First ‹ Previous 1 .. 28 29 30 31 32 33 34 35 36 Next › Last »

sushifrick commented on 2014-07-31 19:39 (UTC)

Jet another PKGBUILD update for version 0.9.9.13.525: http://pastebin.com/TKTDsGxH I tested the x86_64 version myself and changed the md5sum for x86 as well, but without testing. Hope it helps anyone.

BubbatheVTOG commented on 2014-06-23 15:23 (UTC)

0.9.9.12.504 PKGBUILD update. Works on x86_64, have not tested on x86. pkgname=plexmediaserver-plexpass pkgver=0.9.9.12.504 pkgrel=1 _subver=3e7f93c pkgdesc="PlexPass Release of Plex Media Server for Linux" url='http://www.plexapp.com' arch=('i686' 'x86_64') license=('closed') depends=('rsync' 'avahi') conflicts=('plexmediaserver') backup=('etc/conf.d/plexmediaserver') install='plexmediaserver.install' if [ "$CARCH" = "i686" ]; then _arch='i386' md5sums=('2f66e4ade955d9c0986c5b090df01b4b') elif [ "$CARCH" = "x86_64" ]; then _arch='amd64' md5sums=('6d79696f6727976ca4decb0fdf3fb08c') fi if (( !INFAKEROOT )); then echo "This package requires that you are a PlexPass member and have access to the PlexPass forum and downloads (http://forums.plexapp.com/index.php/topic/64569-download-instructions/)" echo echo -n "Enter the user to download the package as: " read user echo -n "Enter the password for ${user}: " read -s password echo fi source=("http://${user}:${password}@downloads.plexapp.com/plex-media-server/${pkgver}-${_subver}/plexmediaserver_${pkgver}-${_subver}_${_arch}.deb" "plexmediaserver.conf.d" "plexmediaserver.service" "start_pms") md5sums+=('32cdd9f9de446f6646616a0077151726' 'd850fe41dd35aba09a375ac8d81175e0' '34e9ddaab4ffc84ab9835abd16a383b3') build() { ar -xv plexmediaserver_${pkgver}-${_subver}_${_arch}.deb || return 1 tar -zxf data.tar.gz || return 1 } package() { mkdir -p "${pkgdir}/opt/plexmediaserver" mkdir -p "${pkgdir}/usr/lib/systemd/system" cp -r usr/lib/plexmediaserver/* "${pkgdir}/opt/plexmediaserver/" install -Dm755 "${srcdir}/start_pms" "${pkgdir}/opt/plexmediaserver/" install -Dm644 "${srcdir}/plexmediaserver.conf.d" "${pkgdir}/etc/conf.d/plexmediaserver" install -Dm644 "${srcdir}/plexmediaserver.service" "${pkgdir}/usr/lib/systemd/system/plexmediaserver.service" } # vim: set ts=4 sts=4 sw=4 ai et:

Californian commented on 2014-05-19 07:45 (UTC)

This gives me a "transient error" when downloading. I had a hunch it was because my password has special characters, and I was correct. I changed my password to all letters and numbers, and it now works, but I just thought I should point that out.

BubbatheVTOG commented on 2014-04-08 00:59 (UTC)

0.9.9.9.455-79f3294 installs great on my 64bit rig. here is my updated pkgbuild file. (note: I was only able to test the 64bit package, but the md5 sum has been updated for the 32bit as well) pkgname=plexmediaserver-plexpass pkgver=0.9.9.9.455 pkgrel=1 _subver=79f3294 pkgdesc="Plex Media Server for Linux" url='http://www.plexapp.com' arch=('i686' 'x86_64') license=('closed') depends=('rsync' 'avahi') conflicts=('plexmediaserver') backup=('etc/conf.d/plexmediaserver') install='plexmediaserver.install' if [ "$CARCH" = "i686" ]; then _arch='i386' md5sums=('b44b5599a6107f2f137064b40d4de5e6') elif [ "$CARCH" = "x86_64" ]; then _arch='amd64' md5sums=('eebe2c57007334d926c62070be00ac34') fi if (( !INFAKEROOT )); then echo "This package requires that you are a PlexPass member and have access to the PlexPass forum and downloads (http://forums.plexapp.com/index.php/topic/64569-download-instructions/)" echo echo -n "Enter the user to download the package as: " read user echo -n "Enter the password for ${user}: " read -s password echo fi source=("http://${user}:${password}@plex.r.worldssl.net/plex-media-server/${pkgver}-${_subver}/plexmediaserver_${pkgver}-${_subver}_${_arch}.deb" "plexmediaserver.conf.d" "plexmediaserver.service" "start_pms") md5sums+=('32cdd9f9de446f6646616a0077151726' 'd850fe41dd35aba09a375ac8d81175e0' '34e9ddaab4ffc84ab9835abd16a383b3') build() { ar -xv plexmediaserver_${pkgver}-${_subver}_${_arch}.deb || return 1 tar -zxf data.tar.gz || return 1 } package() { mkdir -p "${pkgdir}/opt/plexmediaserver" mkdir -p "${pkgdir}/usr/lib/systemd/system" cp -r usr/lib/plexmediaserver/* "${pkgdir}/opt/plexmediaserver/" install -Dm755 "${srcdir}/start_pms" "${pkgdir}/opt/plexmediaserver/" install -Dm644 "${srcdir}/plexmediaserver.conf.d" "${pkgdir}/etc/conf.d/plexmediaserver" install -Dm644 "${srcdir}/plexmediaserver.service" "${pkgdir}/usr/lib/systemd/system/plexmediaserver.service" } # vim: set ts=4 sts=4 sw=4 ai et:

zpAUHlWLSNdNqVSU commented on 2014-04-06 16:18 (UTC)

Love this program, thanks a lot for making this script, been working fine over the last few months I've used it.

BubbatheVTOG commented on 2014-03-14 22:30 (UTC)

0.9.9.7 runs great as well on my 64-bit rig. here is the top of the PKGBUILD. 8 pkgname=plexmediaserver-plexpass 9 pkgver=0.9.9.7.429 10 pkgrel=1 11 _subver=f80a8d6 12 pkgdesc="Plex Media Server for Linux" 13 url='https://plex.tv/' 14 arch=('i686' 'x86_64') 15 license=('closed') 16 depends=('rsync' 'avahi') 17 conflicts=('plexmediaserver-plexpass') 18 backup=('etc/conf.d/plexmediaserver') 19 install='plexmediaserver.install' 20 21 if [ "$CARCH" = "i686" ]; then 22 _arch='i386' 23 md5sums=('d4e9d2c494023de1f0994f4934d0c4fd') 24 elif [ "$CARCH" = "x86_64" ]; then 25 _arch='amd64' 26 md5sums=('549121339567b55b20cb6fda1968a518') 27 fi md5 sum has also been changed to reflect 32-bit. Though I have not tested it so use at own risk!

BubbatheVTOG commented on 2014-03-11 04:24 (UTC)

0.9.9.6 installs great Change software version to 0.9.9.6.424 Change subversion to d1ab326 and change md5sums array to md5sums=('c6356e49709083a7ce0b288d93213d07' '32cdd9f9de446f6646616a0077151726' 'd850fe41dd35aba09a375ac8d81175e0' '34e9ddaab4ffc84ab9835abd16a383b3') ...I didn't happen to grab the 32-bit .deb due to internet limitations but should be easy enough to get.

guildencrantz commented on 2014-02-28 21:31 (UTC)

Sorry for the delays, here's 0.9.9.5

aptalca commented on 2014-02-18 16:28 (UTC)

Unraid just introduced a new beta that runs on Xen. Users are expected to move all their plugins to vm's. The most popular vm of choice at the moment seems to be archlinux and there is already a prebuilt image on their forums with instructions on how to install plexmediaserver on arch. I believe this package will get a lot more hits in the near future mostly from unraid users. With that said, I would also like to point out that this package is 2 versions behind :-) Thanks for the efforts, it is much appreciated