diff options
author | James Meyer <james.meyer@operamail.com> | 2010-10-23 18:17:40 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2010-10-23 18:19:39 (GMT) |
commit | adbcf19958300e9b6598990184c8815b945ba0ee (patch) | |
tree | f4283c850ac0ac202c17e78a637ee7ca8147621b /abs/core-testing/ivtv-utils | |
parent | 61a68250df10d29b624650948484898334ff22d0 (diff) | |
download | linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.zip linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.tar.gz linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.tar.bz2 |
Removed old core and extra from repo. Renamed -testing to core/extra. This will setup the base for the testing branch.
Diffstat (limited to 'abs/core-testing/ivtv-utils')
-rw-r--r-- | abs/core-testing/ivtv-utils/PKGBUILD | 46 | ||||
-rw-r--r-- | abs/core-testing/ivtv-utils/ivtv-utils.install | 31 |
2 files changed, 0 insertions, 77 deletions
diff --git a/abs/core-testing/ivtv-utils/PKGBUILD b/abs/core-testing/ivtv-utils/PKGBUILD deleted file mode 100644 index 5b272b1..0000000 --- a/abs/core-testing/ivtv-utils/PKGBUILD +++ /dev/null @@ -1,46 +0,0 @@ -# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $ -# Contributor: Sasha Zbrozek <kleptophobiac@gmail.com> -# Maintainer: Paul Mattal <paul@archlinux.org> - -pkgname=ivtv-utils -pkgver=1.0.3 -pkgrel=2 -_kernver=2.6.26-ARCH -pkgdesc="Non-mainline kernel drivers and userspace utilities for Hauppauge PVR cards" -arch=('i586' 'i686' 'x86_64') -license=('GPL') -url="http://ivtvdriver.org" -source=("http://dl.ivtvdriver.org/ivtv/archive/1.0.x/ivtv-$pkgver.tar.gz" \ - 'http://dl.ivtvdriver.org/ivtv/firmware/ivtv-firmware.tar.gz' ) -depends=('gcc-libs') -md5sums=('2c0e04a861cb7409ea82a2935b1e0050' 'b9a871f1c569025be9c48a77b3515faf') - -build() { - # SET UP - cd $startdir/src/ivtv-$pkgver || return 1 - - # don't call depmod here - sed -i 's|/sbin/depmod -a||' driver/Makefile i2c-drivers/Makefile || return 1 - - # install the utils in /usr/bin, not /usr/local/bin - sed -i "s%PREFIX = /usr/local%PREFIX = /usr%g" utils/Makefile || return 1 - - #cd to utils as that is all we need since ivtv is now in the kernel - cd utils/ - - # build - make INSTALLDIR=/usr/bin || return 1 - - # install - make DESTDIR=$startdir/pkg install || return 1 - - # remove the kernel modules in the utils package - rm -rf $startdir/pkg/lib/modules || return 1 - - # install the firmware - cd $startdir/src || return 1 - for file in v4l-cx2341x-dec.fw v4l-cx2341x-enc.fw v4l-cx2341x-init.mpg v4l-cx25840.fw v4l-pvrusb2-24xxx-01.fw v4l-pvrusb2-29xxx-01.fw - do - install -D -m 0644 $file $startdir/pkg/lib/firmware/$file || return 1 - done -} diff --git a/abs/core-testing/ivtv-utils/ivtv-utils.install b/abs/core-testing/ivtv-utils/ivtv-utils.install deleted file mode 100644 index 4966d4a..0000000 --- a/abs/core-testing/ivtv-utils/ivtv-utils.install +++ /dev/null @@ -1,31 +0,0 @@ -pre_install() { - /bin/true -} - -post_install() { - # updating module dependencies - echo ">>> Updating module dependencies. Please wait ..." - KERNEL_VERSION=2.6.22-ARCH - depmod -v $KERNEL_VERSION > /dev/null 2>&1 - /bin/true -} - -post_upgrade() { - # updating module dependencies - echo ">>> Updating module dependencies. Please wait ..." - KERNEL_VERSION=2.6.22-ARCH - depmod -v $KERNEL_VERSION > /dev/null 2>&1 - /bin/true -} - -post_remove() { - # updating module dependencies - echo ">>> Updating module dependencies. Please wait ..." - KERNEL_VERSION=2.6.22-ARCH - depmod -v $KERNEL_VERSION > /dev/null 2>&1 - /bin/true -} - -op=$1 -shift -$op $* |