From 9eec14901d0c3dda2dc0705edb47dad0b7fbac6e Mon Sep 17 00:00:00 2001 From: Gabriel Ebner Date: Wed, 30 Dec 2020 17:26:11 +0100 Subject: [PATCH] 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: "???" --- spnavcfg/.SRCINFO | 18 ++++++++++++++++++ spnavcfg/.gitrepo | 12 ++++++++++++ spnavcfg/PKGBUILD | 26 ++++++++++++++++++++++++++ 3 files changed, 56 insertions(+) create mode 100644 spnavcfg/.SRCINFO create mode 100644 spnavcfg/.gitrepo create mode 100644 spnavcfg/PKGBUILD diff --git a/spnavcfg/.SRCINFO b/spnavcfg/.SRCINFO new file mode 100644 index 0000000..672a583 --- /dev/null +++ b/spnavcfg/.SRCINFO @@ -0,0 +1,18 @@ +# Generated by mksrcinfo v8 +# Sat Feb 25 12:29:29 UTC 2017 +pkgbase = spnavcfg + 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). + pkgver = 0.3 + pkgrel = 2 + url = http://spacenav.sourceforge.net/ + arch = i686 + arch = x86_64 + license = GPL + makedepends = gcc + makedepends = make + provides = spnavcfg + source = http://downloads.sourceforge.net/spacenav/spnavcfg-0.3.tar.gz + md5sums = ac4ac49b07c4a4dbfa6ba1cd0d357273 + +pkgname = spnavcfg + diff --git a/spnavcfg/.gitrepo b/spnavcfg/.gitrepo new file mode 100644 index 0000000..d45f5d4 --- /dev/null +++ b/spnavcfg/.gitrepo @@ -0,0 +1,12 @@ +; DO NOT EDIT (unless you know what you are doing) +; +; This subdirectory is a git "subrepo", and this file is maintained by the +; git-subrepo command. See https://github.com/git-commands/git-subrepo#readme +; +[subrepo] + remote = https://aur.archlinux.org/spnavcfg + branch = master + commit = e8d31fafbd31df23c4408f7865c47d65816fd233 + parent = d5ba18ab24ef9c499c31289f363404099492740c + method = merge + cmdver = 0.4.1 diff --git a/spnavcfg/PKGBUILD b/spnavcfg/PKGBUILD new file mode 100644 index 0000000..86ee2ff --- /dev/null +++ b/spnavcfg/PKGBUILD @@ -0,0 +1,26 @@ +# Maintainer: Jan Hambrecht + +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 +}