summaryrefslogtreecommitdiff
path: root/pcr/libspnav
diff options
context:
space:
mode:
authorcoadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu>2014-09-06 04:44:03 -0300
committercoadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu>2014-09-06 04:44:03 -0300
commit86abcf42c7e047ae67969da090e6a1b0ce7ddf28 (patch)
treec21165e97f97248e0764d207bfe3973d078f1b84 /pcr/libspnav
parentee05ee687f8c14a1a97c89380d5dc5e35c620ba3 (diff)
remove unused packages
Diffstat (limited to 'pcr/libspnav')
-rw-r--r--pcr/libspnav/Makefile.in.diff19
-rw-r--r--pcr/libspnav/PKGBUILD24
2 files changed, 0 insertions, 43 deletions
diff --git a/pcr/libspnav/Makefile.in.diff b/pcr/libspnav/Makefile.in.diff
deleted file mode 100644
index 4c93b9cb6..000000000
--- a/pcr/libspnav/Makefile.in.diff
+++ /dev/null
@@ -1,19 +0,0 @@
---- Makefile.in.orig 2009-04-18 00:12:45.000000000 +0200
-+++ Makefile.in 2009-04-18 00:16:06.000000000 +0200
-@@ -4,6 +4,7 @@
- lib_a = libspnav.a
- soname = libspnav.so.0
- lib_so = $(soname).1
-+linkname = libspnav.so
-
- CC = gcc
- AR = ar
-@@ -34,6 +35,8 @@
- install: $(lib_a) $(lib_so)
- cp $(lib_a) $(PREFIX)/$(libdir)/$(lib_a)
- cp $(lib_so) $(PREFIX)/$(libdir)/$(lib_so)
-+ ln -s $(lib_so) $(linkname)
-+ cp -d $(linkname) $(PREFIX)/$(libdir)/$(linkname)
- for h in $(hdr); do cp -p $(srcdir)/$$h $(PREFIX)/include/; done
-
- .PHONY: uninstall
diff --git a/pcr/libspnav/PKGBUILD b/pcr/libspnav/PKGBUILD
deleted file mode 100644
index bb670ae99..000000000
--- a/pcr/libspnav/PKGBUILD
+++ /dev/null
@@ -1,24 +0,0 @@
-# Contributor (Arch): Jan Hambrecht <jaham at gmx dot net>
-# Maintainer: Márcio Silva <coadde@parabola.nu>
-
-pkgname=libspnav
-pkgver=0.2.2
-pkgrel=3
-pkgdesc="The spacenav project provides a free, compatible alternative, to the proprietary 3Dconnexion device driver and SDK, for their 3D input devices (called 'space navigator', 'space pilot', 'space traveller', etc)."
-arch=('i686' 'x86_64' 'mips64el')
-url="http://spacenav.sourceforge.net/"
-license=('GPL')
-depends=('libx11')
-source=(http://downloads.sourceforge.net/spacenav/$pkgname-$pkgver.tar.gz Makefile.in.diff)
-md5sums=('b85a0f4ab711e2d4f73a40e2e371f5ae'
- 'f9122ad4ca823e45bfa0538187df6270')
-
-build() {
- cd $srcdir/$pkgname-$pkgver
- patch -p0 < $srcdir/Makefile.in.diff
- ./configure --prefix=$pkgdir/usr --disable-debug
- make || return 1
- install -d $pkgdir/usr/lib
- install -d $pkgdir/usr/include
- make DESTDIR=$pkgdir install || return 1
-}