updated on Thu Jan 12 08:01:00 UTC 2012
[aur-mirror.git] / cwiid-git / PKGBUILD
blobc9f0c53a866b2a4f99b70bbb068aa8bebe1c1a06
1 #Contributor:Andrea Tarocchi <valdar@email.it> 
2 pkgname=cwiid-git
3 #pkgver=`date +%Y%m%d`
4 pkgver=20110113
5 pkgrel=1
6 pkgdesc="Cwiid-git is the bleeding edge version of a wiimote's driver and utility tools"
7 arch=(i686 x86_64)
8 url="http://github.com/abstrakraft/cwiid"
9 license=('GPL')
11 depends=('bluez>=4' 'gtk2' 'python2')
12 makedepends=('git' 'make')
13 conflicts=('cwiid' 'cwiid-svn')
14 provides=('cwiid' 'cwiid-svn')
15 install=('cwiid.install')
16 source=()
18 _gitroot=git://github.com/abstrakraft/cwiid.git
19 _gitname=cwiid
20 _builddir=$srcdir/$_gitname-build
22 build() {
23   export PYTHON=python2
24   export LDFLAGS=
26   cd $srcdir/
27   msg "Connecting to github.com GIT server...."
28   if [ -d $srcdir/$_gitname ] ; then
29     pushd $_gitname && git pull origin && popd
30     msg "The local files are updated."
31   else
32     git clone $_gitroot
33   fi
34   msg "GIT checkout done or server timeout"
35   msg "Starting make..."
36   rm -rf $_gitname-build
37   git clone $_gitname $_gitname-build
39   cd $_builddir
40   
41   aclocal
42   autoreconf
43   ./configure --prefix=/usr --sysconfdir=/etc --with-python=python`python2 --version 2>&1 | cut -d ' ' -f2` --disable-ldconfig
44 # OLD CONFIG OPTIONS:
45 # usefull options: LDFLAGS=-L/usr/lib/python2.7
47   make
48 # OLD MAKE OPTIONS:
49 # CPPFLAGS=-I/usr/include/python2.7 || return 1
50   make DESTDIR="${pkgdir}" install 
52 # OLD BUILD WAY:
53 #  aclocal
54 #  autoreconf
55   
56 #  ./configure --disable-ldconfig --prefix=/usr --sysconfdir=/etc --with-cwiid-plugins-dir=/lib/cwiid/plugins
57 #  make LDFLAGS=-L../libcwiid || return 1
59 #  install -d $startdir/pkg/usr/bin
60 #  install -d $startdir/pkg/etc
61 #  install -d $startdir/pkg/usr/lib
62 #  install -d $startdir/pkg/usr/include
64 #  make install LDFLAGS=-L../libcwiid prefix=$startdir/pkg/usr sysconfdir=$startdir/pkg/etc install
66 #  install -D -m644 ./wminput/README $pkgdir/usr/share/doc/cwiid/wminput