mirror of
https://aur.archlinux.org/plex-media-server-plexpass.git
synced 2025-11-20 06:28:29 +00:00
9a03fe4fcd
1.1.1 NEW: * (Web) Updated Plex Web to 2.7.10 * (Security) "Networks allowed without auth" preference now also works when server is signed in. * (Security) "Networks allowed without auth" preference can be used with IP addresses, as well as netmask filters. * (Network) Browsers denied access to the server's root path are now redirected to Plex Web. (#5100) FIXES: * (Subtitles) Subtitle auto selection didn't quite match the specification. (#4565) * (Relay) Issues starting relay on certain NAS devices. (#5126) * (Metadata) Show theme music wasn't downloaded when using third party TVDB DVD order agent. (#5159) * (Metadata) Occasional issues getting metadata from TVDB. (#5199) * (Shows) Fixed viewing seasons with the unwatched filter enabled on older and third party clients. (#5182) * (Thumbnails) Failures running scheduled task for thumbnail generation. (#5195) * (Extras) Cloud trailers might not be downloaded on startup on faster systems. (#5188) * (Channels) Only offer iTunes, iPhoto, and Aperture channel preferences on supported platforms. (#5157) * (Windows) Disable iTunes channel by default. (#5157) * (Windows) Issues loading Plex Web on IE11 (#5181) * (OS X) Fix auto-update not working in some cases. (#5212) * (Now Playing) Issues with play queues containing mixed photos and videos. (#5164) * Some rare server crashes. (#4951) 1.1.2.2680-09e98fb FIXES: * (Security) Devices authorized with the "networks allowed without auth" preference were unable to render images and play media when the server was signed in. * (OS X) Fix issue with automatic updates. (Upgrades from 1.1.0 and 1.1.1 will require manual installation.)
61 lines
2.6 KiB
Bash
61 lines
2.6 KiB
Bash
# Maintainer: Donald Webster <fryfrog@gmail.com>
|
|
# Contributor: Mikael Eriksson <mikael_eriksson@miffe.org>
|
|
# Contributor: Maxime Gauduin <alucryd@archlinux.org>
|
|
# Contributor: Rob Sletten <rsletten@gmail.com>
|
|
# Contributor: Tom Moore <t.moore01@gmail.com>
|
|
# Contributor: monty <linksoft@gmx.de>
|
|
# Contributor: Jon Wiersma <archaur@jonw.org>
|
|
# Contributor: Arthur <arthur.darcet@m4x.org>
|
|
# Contributor: Praekon <praekon@googlemail.com>
|
|
|
|
# Based on the plex-media-server package by Maxime Gauduin.
|
|
|
|
pkgname=plex-media-server-plexpass
|
|
pkgver=1.1.2.2680
|
|
_pkgsum=09e98fb
|
|
pkgrel=1
|
|
pkgdesc='Plex Media Server (PlexPass version)'
|
|
arch=('armv7h' 'i686' 'x86_64')
|
|
url='https://plex.tv/'
|
|
license=('custom')
|
|
options=('!emptydirs')
|
|
provides=('plex-media-server')
|
|
conflicts=('plex-media-server')
|
|
backup=('etc/conf.d/plexmediaserver')
|
|
install='plex-media-server.install'
|
|
source=('plexmediaserver.conf.d'
|
|
'plexmediaserver.service'
|
|
'plex.sysusers'
|
|
'terms.txt')
|
|
source_armv7h=("https://downloads.plex.tv/plex-media-server/${pkgver}-${_pkgsum}/PlexMediaServer-${pkgver}-${_pkgsum}-arm7.spk")
|
|
source_i686=("https://downloads.plex.tv/plex-media-server/${pkgver}-${_pkgsum}/plexmediaserver-${pkgver}-${_pkgsum}.i386.rpm")
|
|
source_x86_64=("https://downloads.plex.tv/plex-media-server/${pkgver}-${_pkgsum}/plexmediaserver-${pkgver}-${_pkgsum}.x86_64.rpm")
|
|
sha256sums=('7ab1ee8da9012d257b7f473fb79d76b201ca592cbe3722f977a43b58bfad180e'
|
|
'9da45cc3951ae03086ec663e6273c2de0183495fd15dc34ddd9aa100346d4d3a'
|
|
'ebf153d5789f9d24cb98ae607d227286e1da6ce54e149c8be4f47e08ee729573'
|
|
'7bb97271eb2dc5d1dcb95f9763f505970d234df17f1b8d79b467b9020257915a')
|
|
|
|
sha256sums_armv7h=('c01d3f53576ae5a0b3486c60ef35f6dc20263fcae46c4716f1a2839b32d13f6f')
|
|
sha256sums_i686=('b2948b39ec6b172d04e533f039e95defadf01372988f0309e4612a5766a5436e')
|
|
sha256sums_x86_64=('471c251b9847f511d9a0ba9cef3f8050fbb26574769d9d2d97028e9b382280cc')
|
|
|
|
prepare() {
|
|
if [[ $CARCH =~ arm* ]]; then
|
|
mkdir -p usr/lib/plexmediaserver
|
|
tar -xf package.tgz -C usr/lib/plexmediaserver/
|
|
fi
|
|
}
|
|
|
|
package() {
|
|
install -dm 755 "${pkgdir}"/{opt,etc/conf.d,usr/lib/systemd/system}
|
|
cp -dr --no-preserve='ownership' usr/lib/plexmediaserver "${pkgdir}"/opt/
|
|
install -m 644 plexmediaserver.service "${pkgdir}"/usr/lib/systemd/system/
|
|
install -m 644 plexmediaserver.conf.d "${pkgdir}"/etc/conf.d/plexmediaserver
|
|
install -Dm644 "$srcdir/plex.sysusers" "$pkgdir/usr/lib/sysusers.d/plex.conf"
|
|
|
|
install -dm 755 "${pkgdir}"/usr/share/licenses/${pkgname}
|
|
install -m 644 terms.txt "${pkgdir}"/usr/share/licenses/${pkgname}/
|
|
}
|
|
|
|
# vim: ts=2 sw=2 et:
|