Package Details: steamctrl-git 10-1

Git Clone URL: https://aur.archlinux.org/steamctrl-git.git (read-only, click to copy)
Package Base: steamctrl-git
Description: Utility to setup Valve Steam Controller
Upstream URL: https://github.com/rodrigorc/steamctrl
Licenses: GPL2
Submitter: t-8ch
Maintainer: t-8ch
Last Packager: t-8ch
Votes: 0
Popularity: 0.000000
First Submitted: 2018-06-27 19:39 (UTC)
Last Updated: 2018-06-27 19:39 (UTC)

Dependencies (1)

Required by (0)

Sources (1)

Latest Comments

singron commented on 2019-04-03 21:37 (UTC) (edited on 2019-04-03 21:37 (UTC) by singron)

I had to apply this patch to get it to build.

diff --git a/PKGBUILD b/PKGBUILD
index e1db71b..2ccbba1 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -12,7 +12,7 @@ arch=('x86_64')
 depends=('udev')

 build() {
-       cd "$srcdir/$pkgname"
+       cd "$srcdir/steamctrl"
        ./autogen.sh
        ./configure --prefix=/usr

@@ -20,11 +20,11 @@ build() {
 }

 package() {
-       cd "$srcdir/$pkgname"
+       cd "$srcdir/steamctrl"
        make install DESTDIR="$pkgdir"
 }

 pkgver() {
-       cd "$srcdir/$pkgname"
+       cd "$srcdir/steamctrl"
        git rev-list --count HEAD
 }