summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Wagie2021-02-28 09:59:03 -0700
committerMark Wagie2021-02-28 09:59:03 -0700
commita795e910b291d7e201d110d3fb8ff7fcb6704e9f (patch)
treebdb390639ddae81ee9b0685fddf9921015322dd3
parent6fbd2d1e39621226a0b7b9ae82cebf2a96c855fd (diff)
downloadaur-a795e910b291d7e201d110d3fb8ff7fcb6704e9f.tar.gz
fix build
-rw-r--r--.SRCINFO2
-rw-r--r--.gitignore8
-rw-r--r--PKGBUILD4
3 files changed, 11 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index bff5b770e0b6..a117687f09cf 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = viper4linux-gui
pkgdesc = Official UI for Viper4Linux
pkgver = 2.2
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/Audio4Linux/Viper4Linux-GUI
arch = x86_64
license = GPL3
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..f0a5c3ec515c
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,8 @@
+# Ignore everything
+*
+
+# But not these files...
+!.gitignore
+!PKGBUILD
+!.SRCINFO
+!viper4linux-gui.desktop
diff --git a/PKGBUILD b/PKGBUILD
index 1d1468693547..8c3ec26997b7 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Mark Wagie <mark dot wagie at tutanota dot com>
pkgname=viper4linux-gui
pkgver=2.2
-pkgrel=1
+pkgrel=2
pkgdesc="Official UI for Viper4Linux"
arch=('x86_64')
url="https://github.com/Audio4Linux/Viper4Linux-GUI"
@@ -15,7 +15,7 @@ sha256sums=('b3cb390394b573a69c55169637bf21c827984165b8965a6033ed9cfc5e148c0f'
build() {
cd "Viper4Linux-GUI-$pkgver"
- qmake
+ qmake V4L_Frontend.pro
make PREFIX=/usr
}