summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorVyacheslav Levit2019-01-12 21:34:27 +0200
committerVyacheslav Levit2019-01-12 21:34:27 +0200
commit2568407f65bab7ce00c33a903514c13a348189e0 (patch)
treeeb3ad09b3290b50140da8b695470ef8d4407b899
parenteef7145b2f665a708ff7f3688af22a369810a13a (diff)
downloadaur-2568407f65bab7ce00c33a903514c13a348189e0.tar.gz
v1.0
-rw-r--r--.SRCINFO7
-rw-r--r--PKGBUILD8
2 files changed, 9 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 480c570a48dc..1f9bcab0d33a 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,13 +1,14 @@
pkgbase = notify-send.sh
pkgdesc = notify-send drop-in replacement with more features
- pkgver = 0.2
+ pkgver = 1.0
pkgrel = 1
url = https://github.com/vlevit/notify-send.sh
arch = any
license = GPL3
depends = glib2
- source = https://github.com/vlevit/notify-send.sh/archive/v0.2.tar.gz
- md5sums = 8d1473fad15e7ec9cae8d048af4d1f8b
+ source = https://github.com/vlevit/notify-send.sh/archive/v1.0.tar.gz
+ md5sums = 341e6712086b4843b44d663528dcc68a
+ sha256sums = ec06365be9d66b2a2ec57f1867529a20c6b56f40c8c0379eb9af95eebb006b6b
pkgname = notify-send.sh
diff --git a/PKGBUILD b/PKGBUILD
index 87b3e1e77f07..8e9d3a6780e9 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,6 +1,6 @@
# Maintainer: Vyacheslav Levit <dev@vlevit.org>
pkgname=notify-send.sh
-pkgver=0.2
+pkgver=1.0
pkgrel=1
pkgdesc="notify-send drop-in replacement with more features"
arch=('any')
@@ -8,9 +8,11 @@ url="https://github.com/vlevit/notify-send.sh"
license=('GPL3')
depends=('glib2')
source=("https://github.com/vlevit/$pkgname/archive/v"$pkgver".tar.gz")
-md5sums=('8d1473fad15e7ec9cae8d048af4d1f8b')
+md5sums=('341e6712086b4843b44d663528dcc68a')
+sha256sums=('ec06365be9d66b2a2ec57f1867529a20c6b56f40c8c0379eb9af95eebb006b6b')
package() {
cd "$pkgname-$pkgver"
- install -Dm0755 "$pkgname" "$pkgdir/usr/bin/$pkgname"
+ install -Dm0755 notify-send.sh "$pkgdir/usr/bin/notify-send.sh"
+ install -Dm0755 notify-action.sh "$pkgdir/usr/bin/notify-action.sh"
}