Package Details: openpht 1.8.0.148-1

Git Clone URL: https://aur.archlinux.org/openpht.git (read-only, click to copy)
Package Base: openpht
Description: OpenPHT is a community driven fork of Plex Home Theater
Upstream URL: https://github.com/RasPlex/OpenPHT/
Keywords: openpht plex
Licenses: GPL2
Conflicts: plex-home-theater
Submitter: jpenguin
Maintainer: cowmix
Last Packager: cowmix
Votes: 11
Popularity: 0.000000
First Submitted: 2016-01-12 01:46 (UTC)
Last Updated: 2017-08-06 20:20 (UTC)

Latest Comments

1 2 3 4 5 6 7 Next › Last »

FabioLolix commented on 2022-01-08 12:51 (UTC)

Thsi pkgbuild depends on openpht-ffmpeg but use the internal ffmpeg anyway (-DUSE_INTERNAL_FFMPEG='ON')

Risca commented on 2020-03-14 16:36 (UTC)

I got this building the other day and thought I'd share my findings. First of all, I disabled CEC:

diff --git a/PKGBUILD b/PKGBUILD
index 978b598..abe5bfb 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -19,7 +19,7 @@ depends=('openpht-ffmpeg' 'alsa-lib' 'avahi' 'boost-libs' 'curl' 'expat' 'freety
          'libxext' 'libxrandr' 'lzo' 'pcre' 'python2' 'sdl' 'sdl_image'
          'sdl_mixer' 'sqlite' 'smbclient' 'taglib' 'tinyxml' 'yajl' 'zlib' 'rtmpdump')
 makedepends=('boost' 'cmake' 'doxygen' 'git' 'java-environment' 'shairplay'
-             'libcec<=3.1.0' 'libplist' 'nasm' 'swig' 'unzip' 'zip' 'gcc-libs' 'glibc' 'llvm-libs')
+             'libplist' 'nasm' 'swig' 'unzip' 'zip' 'gcc-libs' 'glibc' 'llvm-libs')
 optdepends=('libplist: AirPlay support'
             'libcec: Pulse-Eight USB-CEC adapter support'
             'pulseaudio: PulseAudio support'
@@ -47,7 +74,8 @@ build() {

   cmake .. \
     -DCMAKE_INSTALL_PREFIX='/usr' \
-    -DUSE_INTERNAL_FFMPEG='ON'
+    -DUSE_INTERNAL_FFMPEG='ON' \
+    -DENABLE_CEC:BOOL=OFF

   make
 }

The rest of the fixes I applied upstream as a pull request: https://github.com/RasPlex/OpenPHT/pull/321

rassawyer commented on 2018-06-05 17:26 (UTC) (edited on 2018-06-05 17:26 (UTC) by rassawyer)

kodi-devel-cec no longer exists on the aur as far as I can tell. Is there a known work around to get this to build? I tried manually installing libcec 3.1.0, but it still complains that it is missing that dep.

nixisa commented on 2018-01-08 01:36 (UTC)

Does not build for me.

==> Validating source files with sha256sums... v1.8.0.148-573b6d73.tar.gz ... FAILED

mwberry commented on 2017-09-11 02:47 (UTC)

Right, so it might already be packaged as https://aur.archlinux.org/packages/kodi-devel-libcec/

mwberry commented on 2017-09-11 02:45 (UTC)

OpenPHT replies on a forked Libcec that it downloads from http://mirrors.xbmc.org/ [1]. Presumably the make logic notices that libcec is already installed so it skips trying to download it. But the copy of libcec installed is not the forked xmbc copy, so there's all sorts of mismatches. I'm still trying to locate where the patched libcec is hosted to see if it is worth setting up a PKGBUILD for it. [1] https://github.com/RasPlex/OpenPHT/blob/openpht-1.8/lib/libcec/Makefile

ky7pxrp2 commented on 2017-03-17 03:15 (UTC) (edited on 2017-03-21 16:58 (UTC) by ky7pxrp2)

@DaMastah it built properly after downgrading libcec to 3.1.0-2

DaMastah commented on 2017-03-07 06:59 (UTC)

Same problem as others : can't compile, error on PeripheralCecAdapter.cpp This program is awesome, please fix

freddierice commented on 2017-01-27 17:18 (UTC)

Add -DENABLE_CEC:BOOL=OFF to the end of the cmake line in PKGBUILD if you do not need CEC support. Then it will build correctly.