blob: e2f253771fbd1813cd91bba6dd7be4037facad19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
# Maintainer: Taijian <taijian@posteo.de>
# Contributor: Jonathan Conder <jonno.conder@gmail.com>
# Contributor: Giovanni Scafora <giovanni@archlinux.org>
pkgbase=mythplugins
pkgname=('mythplugins-mytharchive'
'mythplugins-mythbrowser'
'mythplugins-mythgame'
'mythplugins-mythmusic'
'mythplugins-mythnetvision'
'mythplugins-mythnews'
'mythplugins-mythweather'
'mythplugins-mythweb'
'mythplugins-mythzoneminder')
pkgver=31.0
pkgrel=1
epoch=1
arch=('any')
url="http://www.mythtv.org"
license=('GPL')
makedepends=('dvdauthor' 'dvd+rw-tools' 'mesa-libgl' "mythtv=$epoch:$pkgver"
'perl-datetime-format-iso8601' 'perl-date-manip' 'perl-image-size' 'perl-cgi'
'perl-json' 'perl-libwww' 'perl-soap-lite' 'perl-xml-simple' 'perl-xml-xpath' 'libhdhomerun'
'python-pillow' 'python-pycurl' 'python-oauthlib' 'gdb' 'mariadb-libs' 'minizip'
'python-lxml' 'perl-xml-xpath' 'python-urllib3' 'libcdio-paranoia')
source=("mythtv-$pkgver.tar.gz::https://github.com/MythTV/mythtv/archive/v$pkgver.tar.gz"
"mythweb-$pkgver.tar.gz::https://github.com/MythTV/mythweb/archive/v$pkgver.tar.gz"
'001-mythnetvision-configure.patch'
)
sha256sums=('907d1747950ec6ef1ec965069c75500b4538b781333f60e16d62d519b221a86d'
'064a3417d2e04fc9d85355e8128ea93586fe63e17c26ba27ed758e056bd00afc'
'08c46792e5bae7060a9362b1952caf5dc783f2ad7c609bdd61abd974499329c7')
prepare() {
cd "$srcdir/mythtv-$pkgver/$pkgbase"
patch -Np1 < "../../001-mythnetvision-configure.patch"
cd "$srcdir/mythweb-$pkgver"
sed -re 's@/usr/local.*/usr/share@/usr/share@' -i 'mythweb.php'
}
build() {
cd "$srcdir/mythtv-$pkgver/$pkgbase"
./configure --prefix=/usr \
--enable-all
qmake-qt5 mythplugins.pro
make -s
}
package_mythplugins-mytharchive() {
pkgdesc="Create DVDs or archive recorded shows in MythTV"
depends=('dvdauthor' 'dvd+rw-tools' 'mythtv' 'python-pillow')
cd "$srcdir/mythtv-$pkgver/$pkgbase/mytharchive"
make INSTALL_ROOT="$pkgdir" install
}
package_mythplugins-mythbrowser() {
pkgdesc="Mini web browser for MythTV"
depends=('mythtv')
cd "$srcdir/mythtv-$pkgver/$pkgbase/mythbrowser"
make INSTALL_ROOT="$pkgdir" install
}
package_mythplugins-mythgame() {
pkgdesc="Game emulator plugin for MythTV"
depends=('mythtv' 'minizip')
cd "$srcdir/mythtv-$pkgver/$pkgbase/mythgame"
make INSTALL_ROOT="$pkgdir" install
}
package_mythplugins-mythmusic() {
pkgdesc="Music playing plugin for MythTV"
depends=('mythtv' 'libcdio-paranoia')
cd "$srcdir/mythtv-$pkgver/$pkgbase/mythmusic"
make INSTALL_ROOT="$pkgdir" install
}
package_mythplugins-mythnetvision() {
pkgdesc="MythNetvision plugin for MythTV"
depends=('mythtv' 'python-oauthlib' 'python-urllib3')
cd "$srcdir/mythtv-$pkgver/$pkgbase/mythnetvision"
make INSTALL_ROOT="$pkgdir" install
}
package_mythplugins-mythnews() {
pkgdesc="News checking plugin for MythTV"
depends=('mythtv')
cd "$srcdir/mythtv-$pkgver/$pkgbase/mythnews"
make INSTALL_ROOT="$pkgdir" install
}
package_mythplugins-mythweather() {
pkgdesc="Weather checking plugin for MythTV"
depends=('mythtv' 'perl-date-manip' 'perl-json' 'perl-soap-lite'
'perl-xml-simple' 'perl-xml-xpath' 'perl-image-size'
'perl-datetime-format-iso8601')
cd "$srcdir/mythtv-$pkgver/$pkgbase/mythweather"
make INSTALL_ROOT="$pkgdir" install
}
package_mythplugins-mythweb() {
pkgdesc="Web interface for the MythTV scheduler"
depends=('mythtv' 'perl-cgi')
optdepends=('lighttpd'
'php-apache')
mkdir -p "$pkgdir/var/lib/mythtv/mythweb"/{image_cache,php_sessions}
cp -R "$srcdir/mythweb-$pkgver"/* "$pkgdir/var/lib/mythtv/mythweb"
chown -R http:http "$pkgdir/var/lib/mythtv/mythweb"
chmod g+rw "$pkgdir/var/lib/mythtv/mythweb"/{image_cache,php_sessions}
}
package_mythplugins-mythzoneminder() {
pkgdesc="View CCTV footage from zoneminder in MythTV"
depends=('mythtv' 'mariadb-libs' 'zoneminder')
cd "$srcdir/mythtv-$pkgver/$pkgbase/mythzoneminder"
make INSTALL_ROOT="$pkgdir" install
}
|