diff options
author | James Meyer <james.meyer@operamail.com> | 2009-08-02 04:36:08 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2009-08-02 04:36:08 (GMT) |
commit | 9a4b520578e61b098b4dce7a3ba2376c0c74b01e (patch) | |
tree | 0b77dde997c3554e8211e386485ddc1199ecc476 /abs/core-testing/mythinstall/PKGBUILD | |
parent | 68f0ad93db42767b17f0c9187354b3f0533e896c (diff) | |
parent | 657aa7b8d352108a98719a22e6422b490e598d26 (diff) | |
download | linhes_pkgbuild-9a4b520578e61b098b4dce7a3ba2376c0c74b01e.zip linhes_pkgbuild-9a4b520578e61b098b4dce7a3ba2376c0c74b01e.tar.gz linhes_pkgbuild-9a4b520578e61b098b4dce7a3ba2376c0c74b01e.tar.bz2 |
Merge branch 'HEAD' of ssh://jams@knoppmyth.net/mount/repository/LinHES-PKGBUILD
Diffstat (limited to 'abs/core-testing/mythinstall/PKGBUILD')
-rw-r--r-- | abs/core-testing/mythinstall/PKGBUILD | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/abs/core-testing/mythinstall/PKGBUILD b/abs/core-testing/mythinstall/PKGBUILD new file mode 100644 index 0000000..f6fd685 --- /dev/null +++ b/abs/core-testing/mythinstall/PKGBUILD @@ -0,0 +1,50 @@ +# Maintainer: Jams +pkgname=mythinstall +pkgver=1 +pkgrel=1 +pkgdesc="LinHES installer/systemconfig GUI." +arch=i686 +depends=() +makedepends=(mythtv) + +source=(autocard.cpp + autocard.h + infrared.cpp + infrared.h + installationtype.cpp + installationtype.h + installdialog.cpp + installdialog.h + installsettings.cpp + installsettings.h + main.cpp + misc_settings.cpp + misc_settings.h + mv_common.h + mythinstall.pro + password_manage.cpp + password_manage.h + settemplate.cpp + settemplate.h + statusbox.cpp + statusbox.h + xorgsettings.cpp + xorgsettings.h) + +build() { + +# It is assumed that you have built the mythtv package in the same +# LinHES-PKGBUILD area. + + cd ${srcdir} + qmake mythinstall.pro + make + MVDIR=$startdir/pkg/usr/MythVantage + mkdir -p $MVDIR/bin + install -m 0755 mythinstall $MVDIR/bin/MythVantage + cd $MVDIR/bin + ln -s MythVantage mythvantage + ln -s MythVantage mythinstall + cd - +} + |