summaryrefslogtreecommitdiff
path: root/pcr/cwiid/PKGBUILD
blob: b49ba13aad30cf3fe9c58e9e735ceb44a48b874e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# $Id: PKGBUILD 271927 2017-12-02 20:55:03Z dvzrv $
# Maintainer (AUR): David Runge <dave@sleepmap.de>
# Contributor (AUR): speps <speps at aur dot archlinux dot org>
# Contributor (AUR): Ray Rashif <schiv@archlinux.org>
# Contributor (AUR): Wieland Hoffmann <the_mineo@web.de>
# Contributor (AUR): Birger Moellering <bmoellering@googlemail.com>
# 2018/01/03: <dropped from community; upstream dead, unneeded>
# 2012/06/05: <added into community as supercollider dependency>
# 2012/03/21: <dropped from community; broken + see bug #28344>

# parabola changes and rationale:
#  no changes.

pkgname=cwiid
pkgver=0.6.00+svn201
pkgrel=3
pkgdesc="Linux Nintendo Wiimote interface"
arch=('x86_64' 'i686' 'armv7h')
url="http://abstrakraft.org/cwiid"
depends=('bluez-libs' 'gtk2' 'python2')
license=('GPL')
install="$pkgname.install"
source=("https://github.com/abstrakraft/cwiid/archive/svn_history.tar.gz")
sha512sums=('25c105c37ae0778b6e47c4a02bfc74380f3b3dcc4cb71a3968a243a7de33c55d8b6d7860d826d1d5a6a197223fdb6022effd27d40394ca7007d997694438739b')

prepare() {
  cd "${pkgname}-svn_history"
  # fixing ldconfig use in configure
  sed -i '/ldconfig/s/WITH/ENABLE/' configure.ac
  autoreconf -fi
}

build() {
  cd "${pkgname}-svn_history"
  ./configure --prefix=/usr \
              --sysconfdir=/etc \
              --with-python=python2 \
              --enable-ldconfig=no

  LDFLAGS+=" -pthread -lpthread -lbluetooth" \
  make
}

package() {
  cd "${pkgname}-svn_history"
  make DESTDIR="${pkgdir}" install

  # wminput README
  install -Dm644 wminput/README \
    "${pkgdir}/usr/share/doc/${pkgname}/wminput/README"
}

# vim:set ts=2 sw=2 et: