diff options
author | arctize | 2020-11-04 01:02:41 +0100 |
---|---|---|
committer | arctize | 2020-11-04 01:02:41 +0100 |
commit | 48400caafd8a083aa40bfdf060615c034caef84e (patch) | |
tree | f3206000671135cdb5e7c94fedc38e7c9b4a3d00 | |
parent | 8667a66f8faa26e6152c9b8f04f21497f7259223 (diff) | |
download | aur-48400caafd8a083aa40bfdf060615c034caef84e.tar.gz |
Update to v1.0.0
-rw-r--r-- | .SRCINFO | 6 | ||||
-rw-r--r-- | PKGBUILD | 15 |
2 files changed, 8 insertions, 13 deletions
@@ -1,6 +1,6 @@ pkgbase = barify pkgdesc = Modify volume or brightness and display result as a bar via notifications - pkgver = r4.6734055 + pkgver = 1.0.0 pkgrel = 1 url = https://github.com/arctize/barify arch = any @@ -9,8 +9,8 @@ pkgbase = barify depends = notification-daemon optdepends = dunst: for notifications on Xorg optdepends = mako: for notifications on Wayland - source = git+https://github.com/arctize/barify.git - md5sums = SKIP + source = barify-1.0.0.tar.gz::https://github.com/arctize/barify/archive/1.0.0.tar.gz + sha256sums = da73176c23f10f255a10a74312e035e49f079edc59d1c45b91340c05cd87aeb7 pkgname = barify @@ -1,24 +1,19 @@ # Maintainer: Patrick Wicki <patrick.wicki96 at gmail dot com> pkgname=barify -pkgver=r4.6734055 +pkgver=1.0.0 pkgrel=1 pkgdesc='Modify volume or brightness and display result as a bar via notifications' arch=(any) url="https://github.com/arctize/barify" -source=("git+$url.git") +source=(${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz) license=(GPL3) depends=(git notification-daemon) optdepends=('dunst: for notifications on Xorg' 'mako: for notifications on Wayland') -md5sums=('SKIP') - -pkgver() { - cd "$pkgname" - printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" -} +sha256sums=('da73176c23f10f255a10a74312e035e49f079edc59d1c45b91340c05cd87aeb7') package() { - cd "$srcdir/$pkgname" - install -Dm 755 barify "$pkgdir/usr/bin/barify" + cd ${pkgname}-${pkgver} + install -Dm 755 barify ${pkgdir}/usr/bin/barify } |