summaryrefslogtreecommitdiff
path: root/community/cwiid
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
committerroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
commit18a41d682d6e91e0d28fce23eb75292f477bd620 (patch)
treebce8f660d7d0b6541cadbc49bf1bac2434e4c0c6 /community/cwiid
parent0ade1da67addf154d93c6a6399b0a3d5a18a3336 (diff)
Sun Aug 11 01:21:31 PDT 2013
Diffstat (limited to 'community/cwiid')
-rw-r--r--community/cwiid/PKGBUILD50
-rw-r--r--community/cwiid/cwiid.install10
2 files changed, 0 insertions, 60 deletions
diff --git a/community/cwiid/PKGBUILD b/community/cwiid/PKGBUILD
deleted file mode 100644
index 780155b0d..000000000
--- a/community/cwiid/PKGBUILD
+++ /dev/null
@@ -1,50 +0,0 @@
-# $Id: PKGBUILD 92496 2013-06-07 09:28:55Z tomegun $
-# Maintainer : speps <speps at aur dot archlinux dot org>
-# Contributor: Ray Rashif <schiv@archlinux.org>
-# Contributor: Wieland Hoffmann <the_mineo@web.de>
-# Contributor: Birger Moellering <bmoellering@googlemail.com>
-# 2012/03/21 : <dropped from community; broken + see bug #28344>
-# 2012/06/05 : <added into community as supercollider dependency>
-
-pkgname=cwiid
-pkgver=0.6.00
-pkgrel=13
-pkgdesc="Linux Nintendo Wiimote interface"
-arch=('i686' 'x86_64')
-url="http://abstrakraft.org/cwiid"
-depends=('bluez-libs' 'gtk2' 'python2')
-makedepends=('python2')
-license=('GPL')
-install="$pkgname.install"
-source=("$url/downloads/$pkgname-$pkgver.tgz"
- "$url/raw-attachment/ticket/70/bluez_4_api_changes.patch")
-md5sums=('8d574afdeedc5e5309c87a72d744316a'
- '19b288723d1f2b97a3e5288ab9de3313')
-
-build() {
- cd "$srcdir/$pkgname-$pkgver"
-
- # bluez v4 compatibility
- patch -Np1 -i "$srcdir/bluez_4_api_changes.patch"
-
- ./configure --prefix=/usr \
- --sysconfdir=/etc \
- --disable-ldconfig \
- --with-python=python2
-
- LDFLAGS+="$(pkg-config --libs bluez) -lrt -pthread" make
-}
-
-package() {
- cd "$srcdir/$pkgname-$pkgver"
- make DESTDIR="$pkgdir" install
-
- # fix static lib permissions
- chmod 644 "$pkgdir/usr/lib/libcwiid.a"
-
- # wminput README
- install -Dm644 wminput/README \
- "$pkgdir/usr/share/doc/$pkgname/wminput/README"
-}
-
-# vim:set ts=2 sw=2 et:
diff --git a/community/cwiid/cwiid.install b/community/cwiid/cwiid.install
deleted file mode 100644
index 05e698be7..000000000
--- a/community/cwiid/cwiid.install
+++ /dev/null
@@ -1,10 +0,0 @@
-post_install() {
- echo "==> In order to use wminput ensure you load the uinput kernel"
- echo "==> module and have assigned correct access to /dev/uinput"
-}
-
-post_upgrade() {
- post_install
-}
-
-# vim:set ts=2 sw=2 et: