summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO13
-rw-r--r--.gitignore7
-rw-r--r--PKGBUILD14
3 files changed, 34 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..b1f1dc620bb8
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,13 @@
+pkgbase = publii
+ pkgdesc = Publii is a desktop-based CMS for Windows, Mac and Linux that makes creating static websites fast and hassle-free, even for beginners
+ pkgver = 0.31.3
+ pkgrel = 1
+ url = https://github.com/GetPublii/Publii
+ arch = i686
+ arch = x86_64
+ license = MIT
+ source = https://cdn.getpublii.com/Publii_0.31.3.rpm
+ sha256sums = 0879c5f000455b1df57e183d8248b3981104b2fd2273c4b07c7b4298356c2d1a
+
+pkgname = publii
+
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..31b3675bb091
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,7 @@
+# Ignore everything
+*
+
+# ...but
+!.gitignore
+!.SRCINFO
+!PKGBUILD
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..81b34d6b604f
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,14 @@
+# Maintainer: Julian Xhokaxhiu <info at julianxhokaxhiu dot com>
+pkgname=publii
+pkgver=0.31.3
+pkgrel=1
+pkgdesc="Publii is a desktop-based CMS for Windows, Mac and Linux that makes creating static websites fast and hassle-free, even for beginners"
+arch=('i686' 'x86_64')
+url="https://github.com/GetPublii/Publii"
+license=('MIT')
+source=("https://cdn.getpublii.com/Publii_$pkgver.rpm")
+sha256sums=('0879c5f000455b1df57e183d8248b3981104b2fd2273c4b07c7b4298356c2d1a')
+
+package() {
+ bsdtar -xpf "${srcdir}/Publii_$pkgver.rpm" -C $pkgdir
+}