summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorPieter Joost van de Sande2021-01-13 10:05:56 +0100
committerPieter Joost van de Sande2021-01-13 10:05:56 +0100
commit543c34ad7576815a3e42e4931da7f7187c3cf43e (patch)
tree1eb8308403e5b55ee89ff045a52457e8b5f6ce51
downloadaur-543c34ad7576815a3e42e4931da7f7187c3cf43e.tar.gz
initial version 0.0.1
-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..4bdf1dc080ac
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,10 @@
+pkgbase = theme.sh
+ pkgver = 0.0.1
+ pkgrel = 1
+ url = https://github.com/lemnos/theme.sh
+ arch = any
+ source = https://github.com/lemnos/theme.sh/archive/v0.0.1.tar.gz
+ sha256sums = ca9aadc15d9d06bd6a39e36cb9f15954c8cf934364388ea654fd883a6b2c0488
+
+pkgname = theme.sh
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..efa18df28b3f
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,13 @@
+pkgname=theme.sh
+pkgver=0.0.1
+pkgrel=1
+arch=('any')
+url="https://github.com/lemnos/theme.sh"
+source=("$url/archive/v$pkgver.tar.gz")
+sha256sums=("ca9aadc15d9d06bd6a39e36cb9f15954c8cf934364388ea654fd883a6b2c0488")
+
+package() {
+ cd "$pkgname-$pkgver"
+ chmod +x "theme.sh"
+ install -Dm755 "theme.sh" "$pkgdir/usr/bin/theme.sh"
+}