diff options
author | Cecil Hugh Watson <knoppmyth@gmail.com> | 2010-02-27 04:27:56 (GMT) |
---|---|---|
committer | Cecil Hugh Watson <knoppmyth@gmail.com> | 2010-02-27 04:27:56 (GMT) |
commit | fa0b919eb007a08ce5a154ce36557faaa93f0d72 (patch) | |
tree | e367a3977f99ba7b5d265039a1c8c012e42a3677 /abs/core-testing/mythstream/PKGBUILD | |
parent | ebae0ac6d15cf12dc81d8bad09a97ef6225efb9a (diff) | |
download | linhes_pkgbuild-fa0b919eb007a08ce5a154ce36557faaa93f0d72.zip linhes_pkgbuild-fa0b919eb007a08ce5a154ce36557faaa93f0d72.tar.gz linhes_pkgbuild-fa0b919eb007a08ce5a154ce36557faaa93f0d72.tar.bz2 |
mythstream:Updated to work with 0.22.
Diffstat (limited to 'abs/core-testing/mythstream/PKGBUILD')
-rw-r--r-- | abs/core-testing/mythstream/PKGBUILD | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/abs/core-testing/mythstream/PKGBUILD b/abs/core-testing/mythstream/PKGBUILD new file mode 100644 index 0000000..d23da84 --- /dev/null +++ b/abs/core-testing/mythstream/PKGBUILD @@ -0,0 +1,33 @@ +# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $ +# Maintainer: Juergen Hoetzel <juergen@archlinux.org> +# Contributor: kleptophobiac@gmail.com + +pkgname=mythstream +pkgver=0.18_3 +pkgrel=4 +pkgdesc="Unofficial MythTV plugin for Internet audio and video streams." +arch=('i686' 'x86_64') +url="http://home.kabelfoon.nl/~moongies/streamtuned.html" +license=('GPL') +depends=('mythtv' 'perl-xml-simple' 'fftw' 'fftw2' 'perl-xml-xql') +source=("http://home.kabelfoon.nl/~moongies/sw9vc4htz2/mythstream_mythtv-r21640.tar.gz" "mythstream.patch" "streams.res") +md5sums=('') +install=mythstream.install +groups=('mythtv-extras') +install=mythstream.install + +build() { + cd $startdir/src/mythstream_mythtv-r21640 + ln -s ../../../mythtv/stable-0.22/mythtv/src/mythtv/libs/lib* . + + patch -p1 < ../mythstream.patch || return 1 + + export QTDIR=/usr/lib/qt + export PATH=$QTDIR/bin:$PATH + + qmake mythstream.pro + make qmake || return 1 + + make INSTALL_ROOT=$startdir/pkg install + cp $srcdir/streams.res $pkgdir/usr/share/mythtv/mythstream +} |