summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorSam Whited2018-10-01 09:22:56 -0500
committerSam Whited2018-10-01 09:22:56 -0500
commit569be74a5fddce600631e2032417a512e2e151bf (patch)
tree6ff94120b60ff20c2308e2a2a0c526de538acc9c
downloadaur-569be74a5fddce600631e2032417a512e2e151bf.tar.gz
Initial commit of writeas-cli 1.2
-rw-r--r--.SRCINFO12
-rw-r--r--.gitignore5
-rw-r--r--PKGBUILD16
3 files changed, 33 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..9e2f2f31d71a
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,12 @@
+pkgbase = writeas-cli
+ pkgdesc = Write.as GTK desktop app
+ pkgver = 1.2
+ pkgrel = 0
+ url = https://write.as/apps/desktop
+ arch = x86_64
+ license = GPL
+ source = https://github.com/writeas/writeas-cli/releases/download/v1.2/writeas_1.2_linux_amd64.tar.gz
+ sha256sums = fbef7f15eecaefe1632740090b08a418a7171e49d4c789103847c19180c0420e
+
+pkgname = writeas-cli
+
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..b53c6dff1211
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,5 @@
+pkg/
+src/
+*.zip
+*.tar.xz
+*.tar.gz
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..33eb593f3535
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,16 @@
+# Maintainer: Sam Whited <sam@samwhited.com>
+
+pkgname=writeas-cli
+pkgver=1.2
+pkgrel=0
+pkgdesc="Write.as GTK desktop app"
+arch=('x86_64')
+url="https://write.as/apps/desktop"
+license=(GPL)
+depends=()
+source=(https://github.com/writeas/writeas-cli/releases/download/v${pkgver}/writeas_${pkgver}_linux_amd64.tar.gz)
+sha256sums=('fbef7f15eecaefe1632740090b08a418a7171e49d4c789103847c19180c0420e')
+
+package() {
+ install -Dm755 "${srcdir}/writeas" "${pkgdir}/usr/bin/writeas"
+}