diff options
| author | Cecil Hugh Watson <knoppmyth@gmail.com> | 2009-04-29 23:16:57 (GMT) |
|---|---|---|
| committer | Cecil Hugh Watson <knoppmyth@gmail.com> | 2009-04-29 23:16:57 (GMT) |
| commit | f477be167c84d659e96d1ceb701a50e9ff30e36c (patch) | |
| tree | 30f138de0b989dfc73d2ebe3822ca3b7234ea73d /abs/core-testing/mythtv/stable/mythflix | |
| parent | 0c409638c1ced9f3f7e6f1089579534e85f0c400 (diff) | |
| parent | 2d301f52eae0ece8658eb32168573a336f073999 (diff) | |
| download | linhes_pkgbuild-f477be167c84d659e96d1ceb701a50e9ff30e36c.zip linhes_pkgbuild-f477be167c84d659e96d1ceb701a50e9ff30e36c.tar.gz linhes_pkgbuild-f477be167c84d659e96d1ceb701a50e9ff30e36c.tar.bz2 | |
Merge branch 'HEAD' of ssh://cesman@knoppmyth.net/mount/repository/LinHES-PKGBUILD
Diffstat (limited to 'abs/core-testing/mythtv/stable/mythflix')
| -rw-r--r-- | abs/core-testing/mythtv/stable/mythflix/PKGBUILD | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/abs/core-testing/mythtv/stable/mythflix/PKGBUILD b/abs/core-testing/mythtv/stable/mythflix/PKGBUILD index b636e30..5423c06 100644 --- a/abs/core-testing/mythtv/stable/mythflix/PKGBUILD +++ b/abs/core-testing/mythtv/stable/mythflix/PKGBUILD @@ -3,8 +3,9 @@ # Maintainer: kleptophobiac@gmail.com pkgname=mythflix +PLUGIN=$pkgname pkgver=0.21 -pkgrel=4 +pkgrel=5 pkgdesc="Netflix access plugin for MythTV" arch=('i686' 'x86_64') url="http://www.mythtv.org" @@ -18,15 +19,22 @@ build() { cd $startdir/src/mythplugins . /etc/profile.d/qt3.sh svn update - - # use QT3 qmake + cd $startdir/src/mythplugins + grep -q programs-libs.pro $PLUGIN/$PLUGIN/$PLUGIN.pro + if [ $? != 0 ] + then + echo "include ( ../../programs-libs.pro )" >> $PLUGIN/$PLUGIN/$PLUGIN.pro + msg "appending program lib" + fi + cd - + # use QT3 qmake export PATH=$QTDIR/bin:$PATH ./configure --prefix=/usr --disable-all --enable-opengl --enable-mythflix qmake mythplugins.pro make qmake || return 1 # make -j 2 || return 1 - make + make || return 1 make INSTALL_ROOT=$startdir/pkg install } |
