Files
plex-media-server-plexpass/PKGBUILD
T
Donald Webster 9ea6f1ebd8 Update to 1.0.1.2396-c094d0d
NEW:
 * Update Plex Web to 2.7.4.
 * Updated Media Flags bundle.
 * (Preferences) Advanced preference to run the scanner at low priority (intended for low-powered devices). (#4845)
 * (Metadata) Rename Freebase Agent to Plex Movie Agent.
 * (Metadata) Plex Movie Agent combines the best possible metadata from multiple sources (IMDb, The Movie Database, and Rotten Tomatoes).
 * (Metadata) Added preferences to Plex Movie Agent and TheTVDB Agent to control metadata source of rating, cast info, and summary.
 * (Metadata) Allow TheTVDB agent to use The Movie DB's HD episode images, so you can have the best of both worlds.
 * (Metadata) Upgrade to TheTVDB API v2.

FIXES:
 * (Transcoder) Playback failures playing subtitles on iOS with a Windows server. (#4828)
 * (Transcoder) Crashes with unreliable internet connections. (#4827)
 * (Transcoder) Playback issues with AAC audio containing more than six channels on Windows (#4830, #4843)
 * (Transcoder) Crashes in certain error cases. (#4881)
 * (Transcoder) Errors transcoding source audio with negative timestamps on Windows. (#4833)
 * (Transcoder) Errors transcoding subtitles. (#4862)
 * (Transcoder) Errors decoding MSMPEG4v3 video on certain platforms. (#4919)
 * (Transcoder) Server hangs while transcoding in certain rare cases. (#4943)
 * (Media Analysis) Scanner could hang with 100% CPU usage when analyzing videos with invalid packets. (#4821)
 * (Metadata) Remove broken Google search for matching movies and TV shows.
 * (Now Playing) Channel content wasn't showing up in Now Playing. (#4893)
 * (Security) Refresh TLS certificate after signing out multiple times. (#4817)
 * (Network) Respect X-Forwarded-For headers sent from local or loopback addresses. (#4682)
 * (Network) Crashes unpublishing the server in certain rare cases. (#4885)
 * (Framework) Noisy 'HTTPError' object has no attribute 'read' errors in logs. (#4449)
 * (FreeBSD) Update checks weren't working correctly. (#4844)
 * (OS X) In some cases, lyrics would not display (#4872)
 * (Web) Playback failures when media has unselected subtitles. (#4939)
 * (PHT) Compatibility issues with version 1.0.0 (#4831)
 * Chapters from ChapterDB might not load under some circumstances. (#4814)
 * Crashes in deep media analysis. (#4886)
2016-07-15 07:36:37 -07:00

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.0.1.2396
_pkgsum=c094d0d
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=('45c9966fbad88ba2fdf975623ca36e0cf4e6addd87f68efe9ce70b2415c276c5')
sha256sums_i686=('8b701f9633b1c80cc3578b2b04c6dcad86dc75c5cd1d765bc1cfd685674210ab')
sha256sums_x86_64=('9fd10464bfdf29405be889a9e80fcaf132a8319b15a48283fd092584a4ba0b2e')
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: