blob: a6f483d3635cc597018491cb2363607863833017 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Maintainer: Paulo Fino <somepaulo@duck.com>
# Contributor: Dušan Simić <dusan.simic1810@gmail.com>
pkgname=morewaita-icon-theme
_reponame=MoreWaita
pkgver=47.1
_commit=c4d288412249afe63090d56182d3cdaeef38382f # tag/v47.1
pkgrel=1
pkgdesc="An expanded Adwaita-styled companion icon theme with extra icons for popular apps to complement Gnome Shell's original icons. AUR package maintained by upstream developer."
arch=(any)
url="https://github.com/somepaulo/MoreWaita"
license=(GPL3)
depends=(adwaita-icon-theme)
makedepends=(git)
conflicts=("morewaita-icon-theme-git" "morewaita" "morewaita-git")
replaces=("morewaita")
source=("git+$url#commit=$_commit")
md5sums=(SKIP)
package() {
local themedir="$pkgdir/usr/share/icons/MoreWaita"
install -d "$themedir"
cp -r "$_reponame/scalable" "$themedir/scalable"
cp -r "$_reponame/symbolic" "$themedir/symbolic"
cp "$_reponame/index.theme" "$themedir/index.theme"
}
|