diff options
author | Philip Goto | 2017-07-17 17:30:32 +0200 |
---|---|---|
committer | Philip Goto | 2017-07-17 17:30:32 +0200 |
commit | 88f33d0e1e0120cee85ad0aec9e3aff176684128 (patch) | |
tree | 7ac77ca8391048438f3a816169b9db406596e142 | |
parent | 2432557a34a57a5cc71aeeb8f67c6262d428b652 (diff) | |
download | aur-88f33d0e1e0120cee85ad0aec9e3aff176684128.tar.gz |
Tweak url and version generation
-rw-r--r-- | .SRCINFO | 7 | ||||
-rw-r--r-- | PKGBUILD | 10 | ||||
-rw-r--r-- | mato-icons-git.install | 12 |
3 files changed, 6 insertions, 23 deletions
@@ -2,14 +2,11 @@ pkgbase = mato-icons-git pkgdesc = Mato is a Material Design inspired icon theme for Linux. It features simple and modern icons based on the official icons. pkgver = latest pkgrel = 1 - url = https://github.com/flipflop97/Mato - install = mato-icons-git.install + url = https://flipflop97.github.io/Mato/ arch = any license = Creative Commons Attribution-ShareAlike 4.0 International Public License makedepends = git - provides = mato-icons-git - options = !strip - options = !emptydirs + provides = mato-icons source = mato-icons-git::git+https://github.com/flipflop97/Mato.git sha256sums = SKIP @@ -1,21 +1,19 @@ -# Maintainer: Philip Goto +# Maintainer: Philip Goto <philip.goto@gmail.com> pkgname=mato-icons-git pkgver=latest pkgrel=1 pkgdesc="Mato is a Material Design inspired icon theme for Linux. It features simple and modern icons based on the official icons." arch=('any') -url="https://github.com/flipflop97/Mato" +url="https://flipflop97.github.io/Mato/" license=('Creative Commons Attribution-ShareAlike 4.0 International Public License') makedepends=('git') -provides=('mato-icons-git') -options=(!strip !emptydirs) -install='mato-icons-git.install' +provides=('mato-icons') source=("${pkgname}::git+https://github.com/flipflop97/Mato.git") sha256sums=('SKIP') pkgver() { cd "${pkgname}" - git rev-parse --short HEAD + printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" } package() { diff --git a/mato-icons-git.install b/mato-icons-git.install deleted file mode 100644 index 241045e50390..000000000000 --- a/mato-icons-git.install +++ /dev/null @@ -1,12 +0,0 @@ -post-install() { - # icon cache - gtk-update-icon-cache Mato -} - -post-upgrade() { - post-install -} - -post-remove() { - post-install -} |