32 lines
1.1 KiB
Bash
32 lines
1.1 KiB
Bash
|
# Maintainer: Dan Campbell <dan at compiledworks dot com>
|
||
|
# Contributor: Jesus Alvarez <jeezusjr at gmail dot com>
|
||
|
# Creator: Jan Hambrecht <jaham at gmx dot net>
|
||
|
|
||
|
pkgname=spacenavd
|
||
|
pkgver=0.7.1
|
||
|
pkgrel=2
|
||
|
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=('x86_64')
|
||
|
url="http://spacenav.sourceforge.net/"
|
||
|
license=('GPL')
|
||
|
makedepends=("libx11")
|
||
|
provides=('spacenavd')
|
||
|
backup=('etc/spnavrc')
|
||
|
source=(https://github.com/FreeSpacenav/spacenavd/releases/download/v$pkgver/spacenavd-$pkgver.tar.gz spacenavd.service)
|
||
|
|
||
|
sha256sums=('9266e19b847dabc79bac0f16984e6104338021f83c784780e2fb569c41529d2b'
|
||
|
'5a1122cf44acdf34537bc2ef7c1ad3776872f335b2993d68833c23f999d96c11')
|
||
|
|
||
|
build() {
|
||
|
cd ${pkgname}-${pkgver}
|
||
|
./configure --prefix=/usr
|
||
|
make
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd ${pkgname}-${pkgver}
|
||
|
make DESTDIR="${pkgdir}" install
|
||
|
install -D -m644 ${srcdir}/spacenavd.service ${pkgdir}/etc/systemd/system/spacenavd.service
|
||
|
install -D -m644 ${srcdir}/$pkgname-$pkgver/doc/example-spnavrc ${pkgdir}/etc/spnavrc
|
||
|
}
|