blob: acc71476f339e71155dea1caec196662c4700bda (
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
28
29
|
# Maintainer: Philip Goto <philip.goto@gmail.com>
pkgname=mato-icons-git
pkgver=1.4.r85.gca1fb9a
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://flipflop97.github.io/Mato/"
license=('Creative Commons Attribution-ShareAlike 4.0 International Public License')
makedepends=(git xorg-xcursorgen)
provides=(mato-icons)
conflicts=(mato-icons)
source=("${pkgname}::git+https://github.com/flipflop97/Mato.git")
sha256sums=('SKIP')
pkgver() {
cd "${pkgname}"
git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
cd "${pkgname}"
make
}
package() {
cd "${pkgname}"
export INSTALL_DIR="${pkgdir}/usr/share/icons/"
make install
}
|