summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorradrow2019-03-28 19:04:31 +0100
committerradrow2019-03-28 19:04:31 +0100
commite52ec5d396af07813a500655491260f47705de29 (patch)
tree8c2eb5470d936b3236fe19ae07cd6bf1928f0e0b
downloadaur-e52ec5d396af07813a500655491260f47705de29.tar.gz
Init PKGBUILD and .SRCINFO
-rw-r--r--.SRCINFO15
-rw-r--r--PKGBUILD20
2 files changed, 35 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..9a6ea14537eb
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,15 @@
+pkgbase = i3hloc
+ pkgdesc = Flexible scheduler for i3bar. Precompiled binary version
+ pkgver = 1.0.0
+ pkgrel = 1
+ url = https://github.com/radrow/i3hloc
+ arch = x86_64
+ license = BSD3
+ depends = i3-wm
+ provides = i3hloc
+ conflicts = i3hloc-git
+ source = https://github.com/radrow/i3hloc/releases/download/1.0.0/i3hloc
+ sha256sums = 35d6958b6bc777dfbf0ae5cd469dea52744cf9921905275b6d36fb0764a2bba4
+
+pkgname = i3hloc
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..27bb9100cc22
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,20 @@
+# Maintainer: Radosław Rowicki radrowicki at gmail dot guessit
+# Contributor: Radosław Rowicki radrowicki at gmail dot guessit
+
+pkgname=i3hloc
+_pkgname=i3hloc
+pkgver=1.0.0
+pkgrel=1
+pkgdesc="Flexible scheduler for i3bar. Precompiled binary version"
+arch=('x86_64')
+url="https://github.com/radrow/i3hloc"
+license=('BSD3')
+provides=('i3hloc')
+conflicts=('i3hloc-git')
+depends=('i3-wm')
+source=("https://github.com/radrow/i3hloc/releases/download/1.0.0/i3hloc")
+sha256sums=('35d6958b6bc777dfbf0ae5cd469dea52744cf9921905275b6d36fb0764a2bba4')
+
+package() {
+ install -Dm755 i3hloc ${pkgdir}/usr/bin/i3hloc
+}