blob: ea3eab98d8d2c741a270507baadf1f9e85f322dc (
plain)
1 # Description: Homebrew PVR Project themes.
2 # URL: http://www.mythtv.org/
3 # Maintainer: Lucas Hazel, lucas at die dot net dot au
4 # Packager: James Mills, prologic at shortcircuit dot net dot au
5 #
6 # Depends on: qt3
7
8 name=myththemes
9 version=0.19
10 release=1
11 source=(http://www.mythtv.org/mc/$name-$version.tar.bz2)
12
13 build() {
14 cd $name-$version
15
16 ./configure --prefix=$PKG/usr
17 qmake $name.pro
18
19 mkdir -p $PKG/usr
20 make INSTALL_ROOT=$PKG/usr install
21
22 chown root:root $PKG
23 }
|