summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Wagie2021-10-28 08:22:17 -0600
committerMark Wagie2021-10-28 08:22:17 -0600
commit88b524e132ada1b3c79453f13eea41203944187d (patch)
tree02b6f69545d94f08abb5fec1c5b47b5c9999b9e1
parent1094cdb7336fe3a82558729ffebe9b4389535f20 (diff)
downloadaur-88b524e132ada1b3c79453f13eea41203944187d.tar.gz
remove obsolete build flag
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD12
2 files changed, 4 insertions, 10 deletions
diff --git a/.SRCINFO b/.SRCINFO
index f3f64fd63ea0..b7fa3c849dd8 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = touche
pkgdesc = The desktop application to configure Touchégg
pkgver = 2.0.0
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/JoseExposito/touche
arch = x86_64
license = GPL3
diff --git a/PKGBUILD b/PKGBUILD
index eeec6ff6a09a..35bb80ecbd62 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Mark Wagie <mark dot wagie at tutanota dot com>
pkgname=touche
pkgver=2.0.0
-pkgrel=1
+pkgrel=2
pkgdesc="The desktop application to configure Touchégg "
arch=('x86_64')
url="https://github.com/JoseExposito/touche"
@@ -14,17 +14,11 @@ source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
sha256sums=('cff063028d074a7186cde8cf80982736e0d6eff3103e99d10f9dae7ad1379dd2')
build() {
- export npm_config_cache="$srcdir/npm_cache"
-
cd "$pkgname-$pkgver"
+ export npm_config_cache="$srcdir/npm_cache"
npm install
- if [[ "$XDG_CURRENT_DESKTOP" == "Pantheon" ]]; then
- arch-meson . build -Dtarget-de=elementary
- else
- arch-meson . build -Dtarget-de=gnome
- fi
-
+ arch-meson . build
meson compile -C build
}