summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarko Korhonen2020-01-20 01:05:32 +0200
committerMarko Korhonen2020-01-20 01:05:32 +0200
commit28a1b4a7dcbf63102d6d127a1506db59e7e0ecd7 (patch)
treecc57670bd4e7e4b863bb448b48c70bc4e5c25773
downloadaur-28a1b4a7dcbf63102d6d127a1506db59e7e0ecd7.tar.gz
Release 0.1.0
Signed-off-by: Marko Korhonen <marko.korhonen@reekynet.com>
-rw-r--r--.SRCINFO15
-rw-r--r--PKGBUILD18
2 files changed, 33 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..480b127e24a8
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,15 @@
+pkgbase = lqsd
+ pkgdesc = LiQuid Screen Dim - Dim your screen smoothly. Precompiled binary version
+ pkgver = 0.1.0
+ pkgrel = 1
+ url = https://git.reekynet.com/ReekyMarko/lqsd
+ arch = x86_64
+ license = Apache
+ depends = light
+ provides = lqsd
+ conflicts = lqsd
+ source = https://gitlab.com/ReekyMarko/lqsd/uploads/9e783ffe478273226f05b89f1c2ee8ab/lqsd
+ sha256sums = f089bcfb18d2538486efc4954b8766d554170a194f32605ce2c939a49be292ff
+
+pkgname = lqsd-bin
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..8e27b0771ea8
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,18 @@
+# Maintainer: Marko Korhonen <marko.korhonen@reekynet.com>
+pkgname="lqsd-bin"
+pkgbase="lqsd"
+pkgdesc="LiQuid Screen Dim - Dim your screen smoothly. Precompiled binary version"
+pkgver=0.1.0
+pkgrel=1
+arch=('x86_64')
+url="https://git.reekynet.com/ReekyMarko/lqsd"
+license=('Apache')
+depends=('light')
+provides=('lqsd')
+conflicts=('lqsd')
+source=("https://gitlab.com/ReekyMarko/lqsd/uploads/9e783ffe478273226f05b89f1c2ee8ab/lqsd")
+sha256sums=('f089bcfb18d2538486efc4954b8766d554170a194f32605ce2c939a49be292ff')
+
+package() {
+ install -D -m755 "${pkgbase}" "$pkgdir/usr/bin/${pkgbase}"
+}