summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorPieter Joost van de Sande2021-12-23 14:08:48 +0100
committerPieter Joost van de Sande2021-12-23 14:08:48 +0100
commit67f47c611684fd8a93b9c9582a73b5557e3e51a4 (patch)
treee7b0ff21cc536b7abb6b2673059b792c19e778bd
downloadaur-67f47c611684fd8a93b9c9582a73b5557e3e51a4.tar.gz
initial commit with version 0.2.10
-rw-r--r--.SRCINFO10
-rw-r--r--PKGBUILD13
2 files changed, 23 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..2cd92aa9638f
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,10 @@
+pkgbase = sttr
+ pkgdesc = cli app to perform various operations on string
+ pkgver = 0.2.10
+ pkgrel = 1
+ url = https://github.com/abhimanyu003/sttr
+ arch = x86_64
+ source = https://github.com/abhimanyu003/sttr/releases/download/v0.2.10/sttr_0.2.10_linux_amd64.tar.gz
+ sha256sums = ea4850cee379330e7e5bfa66278dc70c95958b7b29b85337f812d8e3f057ec93
+
+pkgname = sttr
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..97b9b15bdba8
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,13 @@
+pkgname=sttr
+pkgver=0.2.10
+pkgrel=1
+pkgdesc='cli app to perform various operations on string'
+arch=('x86_64')
+url="https://github.com/abhimanyu003/sttr"
+makedepends=()
+source=("$url/releases/download/v$pkgver/sttr_${pkgver}_linux_amd64.tar.gz")
+sha256sums=('ea4850cee379330e7e5bfa66278dc70c95958b7b29b85337f812d8e3f057ec93')
+
+package() {
+ install -Dm755 ./sttr "${pkgdir}/usr/bin/sttr"
+}