updated on Thu Jan 19 00:16:31 UTC 2012
[aur-mirror.git] / saa7134-hg / PKGBUILD
blob9783a18aae2ed6a106a5efb48a25e85885bb3c03
1 # Contributor: Aidan Taniane <aidanjt@gmail.com>
2 # Notes: this PKGBUILD should be suitable for any card in the v4l-dvb SCM tree
3 # with only some trivial changes
4 pkgname="saa7134-hg"
5 pkgver=8063
6 pkgrel=1
7 pkgdesc="Kernel V4L modules for Phillips SAA7134 cards"
8 arch=(i686 x86_64)
9 url="http://linuxtv.org/hg/v4l-dvb"
10 license=('GPL')
11 makedepends=('mercurial' 'gcc' 'make' 'which' 'module-init-tools' 'grep')
12 optdepends=('linuxtv-dvb-apps: Useful tools for configuring your DVB card'
13             'mplayer: A V4l/DVB capable media player'
14             'mythtv: mplayer on steroids, a fully complete PVR system')
15 source=('saa7134-hg.install' 'saa7134-hg.kconfig')
16 md5sums=('8b57019c8bd9da816d7460375306c591' 'a32743f1fcf99406a72e7884c1a7a390')
17 install=('saa7134-hg.install')
18 _hgroot=('http://linuxtv.org/hg/v4l-dvb')
19 _hgrepo=('v4l-dvb/')
21 build() {
22         local _treedir="${startdir}/src/v4l-dvb"
23         local _kdir="/lib/modules/$(uname -r)/updates/"
24         local _docdir="${startdir}/pkg/usr/share/${pkgname}"
26         # Step into the v4l tree
27         cd ${_treedir}
29         # Copy config in place
30         cp ${startdir}/${pkgname}.kconfig ${_treedir}/v4l/.config  || return 1
32         # Compile
33         make || return 1
35         # Install modules
36         make DESTDIR=$startdir/pkg/ KDIR26=$_kdir install
37         rm ${startdir}/pkg/lib/modules/$(uname -r)/modules.*
39         # Install Documentation
40         mkdir -p ${_docdir}
41         cp -Rf ${_treedir}/linux/Documentation/video4linux/{CARDLIST,README}.saa7134 ${_docdir}/
42         echo "The module_parm* lines in saa7134-core.c have been dumped here for your convieniance,
43 they should be useful when dealing with troublesome cards that need certain
44 settings when being modprobed or insmod'ed.
46 Also note that for Medion MD8800 cards, you need to add 'use_frontend=1' to get
47 DVB-S support.  Enjoy.
49 saa7134.ko:
50 ===========
51 $(egrep "module_param\(|MODULE_PARM_DESC\(" ${_treedir}/v4l/saa7134-core.c)
53 saa7134_dvb.ko:
54 ===============
55 $(egrep "module_param\(|MODULE_PARM_DESC\(" ${_treedir}/v4l/saa7134-dvb.c)
56 " &> ${_docdir}/${pkgname}.parms