diff options
author | Gert Oja | 2023-10-15 23:35:47 +0300 |
---|---|---|
committer | Gert Oja | 2023-10-15 23:35:47 +0300 |
commit | adbc4133d0bc850fa898d54ca0634caf13c3b90e (patch) | |
tree | 3b9e7e8415099c9d8db1b18b02926340ec4cc005 | |
download | aur-adbc4133d0bc850fa898d54ca0634caf13c3b90e.tar.gz |
Released version 0.2.5
-rw-r--r-- | .SRCINFO | 13 | ||||
-rw-r--r-- | PKGBUILD | 20 |
2 files changed, 33 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..6cc087453c76 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,13 @@ +pkgbase = kya-bin + pkgdesc = Watches for new screenshots and sends them to Gyazo + pkgver = 0.2.5 + pkgrel = 1 + url = https://github.com/gert7/kya + arch = x86_64 + license = MIT + provides = kya + conflicts = kya + source = https://github.com/gert7/kya/releases/download/v0.2.5/kya-0.2.5-x86_64.tar.gz + sha256sums = a1f2f011ca5a6cf2149ce3078b01751a447adf8ebae09925d7b747df5d87b4bf + +pkgname = kya-bin diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..9893c73111f9 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,20 @@ +# Maintainer: Gert Oja +# +# This PKGBUILD was generated by `cargo aur`: https://crates.io/crates/cargo-aur + +pkgname=kya-bin +pkgver=0.2.5 +pkgrel=1 +pkgdesc="Watches for new screenshots and sends them to Gyazo" +url="https://github.com/gert7/kya" +license=("MIT") +arch=("x86_64") +provides=("kya") +conflicts=("kya") +source=("https://github.com/gert7/kya/releases/download/v$pkgver/kya-$pkgver-x86_64.tar.gz") +sha256sums=("a1f2f011ca5a6cf2149ce3078b01751a447adf8ebae09925d7b747df5d87b4bf") + +package() { + install -Dm755 kya-for-gyazo -t "$pkgdir/usr/bin" + install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" +} |