diff options
author | James Meyer <james.meyer@operamail.com> | 2009-04-03 22:45:34 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2009-04-03 22:45:34 (GMT) |
commit | 45163f12cc62e53c723c28c9e4dd2eb45493d2ed (patch) | |
tree | 59a190efd938f8d47b721f56a4704a60560db0b3 /abs/extra-testing/community/nxtvepg/PKGBUILD | |
parent | e7467efc34be8dfd5a191d77198d67c6ae1bfc7b (diff) | |
download | linhes_pkgbuild-45163f12cc62e53c723c28c9e4dd2eb45493d2ed.zip linhes_pkgbuild-45163f12cc62e53c723c28c9e4dd2eb45493d2ed.tar.gz linhes_pkgbuild-45163f12cc62e53c723c28c9e4dd2eb45493d2ed.tar.bz2 |
nxtvepg: adding to community.
Diffstat (limited to 'abs/extra-testing/community/nxtvepg/PKGBUILD')
-rw-r--r-- | abs/extra-testing/community/nxtvepg/PKGBUILD | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/abs/extra-testing/community/nxtvepg/PKGBUILD b/abs/extra-testing/community/nxtvepg/PKGBUILD new file mode 100644 index 0000000..5de6bc7 --- /dev/null +++ b/abs/extra-testing/community/nxtvepg/PKGBUILD @@ -0,0 +1,45 @@ +# Contributor: Perry3D <perry3d at gmail dot com> +# Previous: Gilles CHAUVIN <gcnweb at gmail dot com> + +pkgname=nxtvepg +pkgver=2.8.1 +pkgrel=2 +pkgdesc="A decoder for nexTView EPG an Electronic TV Programme Guide" +url="http://nxtvepg.sf.net/" +license="GPL" +depends=('tcl>=8.5.0' 'tk' 'libxmu') +source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz \ +tcl_85.patch \ +$pkgname-icon-16.png $pkgname-icon-32.png $pkgname-icon-48.png \ +$pkgname.desktop) +arch=('i686' 'x86_64') + +build() { + cd $startdir/src/$pkgname-$pkgver + + msg "Applying patch for tcl/tk8.5..." + patch -p0 < ../tcl_85.patch + + make || return 1 + + make prefix=$startdir/pkg/usr/ \ + bindir=$startdir/pkg/usr/bin \ + resdir=$startdir/pkg/usr/share/X11 \ + INST_DB_DIR=$startdir/pkg/var/tmp/nxtvdb \ + cfgdir=$startdir/pkg/usr/share/nxtvepg \ + install + + # Icons + for size in 16 32 48; do + install $startdir/src/$pkgname-icon-$size.png -D -m644 $startdir/pkg/usr/share/pixmaps/$pkgname-icon-$size.png + done + + # .desktop file + install $startdir/src/$pkgname.desktop -D -m644 $startdir/pkg/usr/share/applications/$pkgname.desktop +} +md5sums=('0811b1b95537b3cbab9f8d18d1501411' + 'db5e77089204aeb35e84c7f5505664a6' + '5f7c220d3355b6f043a2bdd5acec8608' + '8988d3f33a90bd99f9a61d8f7e4f46c3' + '26d86bd935df1dc9328f07b879f30de2' + '5d14ff096ef811ccb7dc330e5d3a76fd') |