archpkgs/spnavcfg/PKGBUILD
Gabriel Ebner 9eec14901d git subrepo clone https://aur.archlinux.org/spnavcfg
subrepo:
  subdir:   "spnavcfg"
  merged:   "e8d31fa"
upstream:
  origin:   "https://aur.archlinux.org/spnavcfg"
  branch:   "master"
  commit:   "e8d31fa"
git-subrepo:
  version:  "0.4.1"
  origin:   "???"
  commit:   "???"
2020-12-30 17:26:11 +01:00

27 lines
750 B
Bash

# Maintainer: Jan Hambrecht <jaham at gmx dot net>
pkgname=spnavcfg
pkgver=0.3
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=('i686' 'x86_64')
url="http://spacenav.sourceforge.net/"
license=('GPL')
makedepends=('gcc' 'make')
provides=('spnavcfg')
options=()
install=
source=(http://downloads.sourceforge.net/spacenav/$pkgname-$pkgver.tar.gz)
md5sums=('ac4ac49b07c4a4dbfa6ba1cd0d357273')
build() {
cd ${pkgname}-${pkgver}
./configure --prefix=/usr
make || return 1
}
package() {
cd ${pkgname}-${pkgver}
make DESTDIR="${pkgdir}" install || return 1
}