summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Menelkir2021-04-20 08:17:27 -0300
committerDaniel Menelkir2021-04-20 08:17:27 -0300
commit99e11fbba175e52721b74d83b5d2dae25fe3d54f (patch)
treec6e7168ce37fd4003cfbf60364980502dc719d4a
parentd894d86e7b377a493121bee02f247066b89bdd93 (diff)
downloadaur-99e11fbba175e52721b74d83b5d2dae25fe3d54f.tar.gz
Removed systemd dep to be more init agnostic
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD9
2 files changed, 7 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 4a129c5eec88..d8aacef39be9 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = g15daemon
pkgdesc = A daemon that makes it possible to use the G-Buttons and draw on the G15 LCD
pkgver = 3.0.1
- pkgrel = 1
+ pkgrel = 2
url = https://gitlab.com/menelkir/g15daemon
arch = x86_64
license = GPL
diff --git a/PKGBUILD b/PKGBUILD
index 73a99bd7b0aa..59bbabe99b9d 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,7 +4,7 @@
pkgname=g15daemon
pkgver=3.0.1
-pkgrel=1
+pkgrel=2
pkgdesc="A daemon that makes it possible to use the G-Buttons and draw on the G15 LCD"
arch=('x86_64')
url="https://gitlab.com/menelkir/g15daemon"
@@ -23,6 +23,9 @@ build() {
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
- install -D -m 644 "${srcdir}/${pkgname}-${pkgver}/contrib/init/g15daemon.service" \
- "${pkgdir}/usr/lib/systemd/system/g15daemon.service"
+ echo ""
+ echo ""
+ echo "You need to install an init script depending on what you're using it."
+ echo ""
+ echo ""
}