diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/linuxtv-dvb-apps |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/linuxtv-dvb-apps')
-rw-r--r-- | community/linuxtv-dvb-apps/PKGBUILD | 37 | ||||
-rw-r--r-- | community/linuxtv-dvb-apps/linuxtv-dvb-apps.install | 8 |
2 files changed, 45 insertions, 0 deletions
diff --git a/community/linuxtv-dvb-apps/PKGBUILD b/community/linuxtv-dvb-apps/PKGBUILD new file mode 100644 index 000000000..66192edc6 --- /dev/null +++ b/community/linuxtv-dvb-apps/PKGBUILD @@ -0,0 +1,37 @@ +# $Id: PKGBUILD 21619 2010-07-16 20:05:39Z tdziedzic $ +# Contributor: Jaroslaw Swierczynski <swiergot@aur.archlinux.org> +# Contributor: Camille Moncelier <pix@devlife.org> + +pkgname=linuxtv-dvb-apps +pkgver=1.1.1 +pkgrel=4 +_hgrev=68d20621d93a +pkgdesc='Viewer programs for DVB cards' +arch=('i686' 'x86_64') +url='http://www.linuxtv.org/' +license=('GPL') +install=linuxtv-dvb-apps.install +#source=(http://www.linuxtv.org/download/dvb/$pkgname-$pkgver.tar.bz2) +source=("http://linuxtv.org/hg/dvb-apps/archive/${_hgrev}.tar.bz2") +md5sums=('5b43136359d9555a567a76ba28433afc') + +build() { + cd dvb-apps-${_hgrev} + + rm -rf include + + make -C lib + + make -C util +} + +package() { + cd dvb-apps-${_hgrev} + + make -C lib DESTDIR=${pkgdir} install + + make -C util DESTDIR=${pkgdir} install + + chmod 755 ${pkgdir}/usr/lib/*.so* +} + diff --git a/community/linuxtv-dvb-apps/linuxtv-dvb-apps.install b/community/linuxtv-dvb-apps/linuxtv-dvb-apps.install new file mode 100644 index 000000000..a260be22b --- /dev/null +++ b/community/linuxtv-dvb-apps/linuxtv-dvb-apps.install @@ -0,0 +1,8 @@ +# arg 1: the new package version +# arg 2: the old package version +post_upgrade() { + echo ">>> Some initial-tuning-data files have been installed under" + echo ">>> /usr/share/dvb-utils/scan/" + echo ">>> you can use them to generate your channel.conf file" +} + |