diff options
author | Mark Wagie | 2023-11-03 11:37:47 -0600 |
---|---|---|
committer | Mark Wagie | 2023-11-03 11:37:47 -0600 |
commit | d625171e1cc2f79a95ef11282034d6990686361f (patch) | |
tree | b802582b9551794f5965d16035463d71314b4e45 | |
parent | 230474fa96caad6175bd07f98d84b7f411f55a1e (diff) | |
download | aur-d625171e1cc2f79a95ef11282034d6990686361f.tar.gz |
53
-rw-r--r-- | .SRCINFO | 6 | ||||
-rw-r--r-- | PKGBUILD | 13 |
2 files changed, 12 insertions, 7 deletions
@@ -1,13 +1,13 @@ pkgbase = gnome-shell-extension-blur-my-shell pkgdesc = Extension that adds a blur look to different parts of the GNOME Shell - pkgver = 52 - pkgrel = 2 + pkgver = 53 + pkgrel = 1 url = https://github.com/aunetx/blur-my-shell arch = any license = MIT makedepends = git depends = gnome-shell - source = git+https://github.com/aunetx/blur-my-shell.git#commit=78857cf1fa16cbb622d8894bd341ef773c883232 + source = git+https://github.com/aunetx/blur-my-shell.git#commit=f479cb6ade4b91533926947eb132ff28bc62a3e5 sha256sums = SKIP pkgname = gnome-shell-extension-blur-my-shell @@ -3,18 +3,23 @@ # Contributor: malacology <guoyizhang at malacology dot net> pkgname=gnome-shell-extension-blur-my-shell _uuid=blur-my-shell@aunetx -pkgver=52 -pkgrel=2 +pkgver=53 +pkgrel=1 pkgdesc="Extension that adds a blur look to different parts of the GNOME Shell" arch=('any') url="https://github.com/aunetx/blur-my-shell" license=('MIT') depends=('gnome-shell') makedepends=('git') -_commit=78857cf1fa16cbb622d8894bd341ef773c883232 # 52 -source=("git+https://github.com/aunetx/blur-my-shell.git#commit=$_commit") +_commit=f479cb6ade4b91533926947eb132ff28bc62a3e5 # tags/v53^0 +source=("git+https://github.com/aunetx/blur-my-shell.git#commit=${_commit}") sha256sums=('SKIP') +pkgver() { + cd blur-my-shell + git describe --tags | sed 's/^v//;s/-/+/g' +} + build() { cd blur-my-shell make |