summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authordadav2020-11-01 16:18:21 +0100
committerdadav2020-11-01 16:18:21 +0100
commit718230420ef0bafac9282b6e1345487ed121f1d7 (patch)
treea83bf3ac473e77b2fca127310367093c21d14e9b
downloadaur-718230420ef0bafac9282b6e1345487ed121f1d7.tar.gz
init
-rw-r--r--.SRCINFO13
-rw-r--r--PKGBUILD18
2 files changed, 31 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..ea011ead66ce
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,13 @@
+pkgbase = rofi-tmpmail-git
+ pkgdesc = This tool if a rofi wrapper for the tmpmail tool
+ pkgver = 0.1.0
+ pkgrel = 1
+ url = https://github.com/dadav/rofi-tmpmail
+ arch = x86_64
+ license = GPL
+ provides = rofi-tmpmail
+ source = https://github.com/dadav/rofi-tmpmail/archive/0.1.0.zip
+ sha256sums = SKIP
+
+pkgname = rofi-tmpmail-git
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..e8a169d28ecc
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,18 @@
+# Maintainer: dadav <33197631+dadav@users.noreply.github.com>
+
+pkgname=rofi-tmpmail-git
+pkgver=0.1.0
+pkgrel=1
+pkgdesc="This tool if a rofi wrapper for the tmpmail tool"
+arch=('x86_64')
+url="https://github.com/dadav/rofi-tmpmail"
+license=('GPL')
+makedepends=()
+provides=('rofi-tmpmail')
+source=("https://github.com/dadav/rofi-tmpmail/archive/${pkgver}.zip")
+sha256sums=('SKIP')
+
+package() {
+ cd "${srcdir}/rofi-tmpmail-${pkgver}"
+ install -D -m0755 rofi-tmpmail.sh ${pkgdir}/usr/bin/rofi-tmpmail
+}