blob: 31ea111b65e49159f80f35336201b4784ecfc1b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Maintainer: Gustavo Costa <gusbemacbe@gmail.com>
pkgname=yaru-plus-git
pkgver=4.1
pkgrel=7
pkgdesc="Yaru++ – Elegant and modern third-party icons theme, based on Canonical’s Yaru"
arch=('any')
url="https://github.com/Bonandry/${pkgname/-git/}"
license=('GPL3')
changelog=CHANGELOG.sh
depends=('yaru-icon-theme')
makedepends=('git')
conflicts=(${pkgname/-git/})
provides=(${pkgname/-git/})
source=("git+${url}.git#tag=v${pkgver}")
sha256sums=('SKIP')
package()
{
make -C ${pkgname/-git/} DESTDIR="$pkgdir/" install
}
|