blob: d696a2862b8e452c255109fbc16a61f81218e109 (
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
30
31
32
33
34
35
36
37
38
39
40
41
|
# Maintainer: éclairevoyant
# Contributor: Philip Goto <philip dot goto at gmail.com>
_pkgname=adwaita-icon-theme
pkgname="$_pkgname-git"
pkgver=43+r60+g4f8e8dc69
pkgrel=1
pkgdesc='GNOME standard icons'
arch=('any')
url="https://gitlab.gnome.org/GNOME/$_pkgname"
license=('LGPL3' 'CCPL:by-sa')
depends=('hicolor-icon-theme' 'gtk-update-icon-cache' 'librsvg')
makedepends=('git' 'gtk3')
provides=("$_pkgname")
conflicts=("$_pkgname")
source=("git+$url.git")
b2sums=('SKIP')
pkgver() {
cd $_pkgname
git describe --long --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
}
prepare() {
cd $_pkgname
autoreconf -fvi
}
build() {
cd $_pkgname
./configure --prefix=/usr
make
}
check() {
make -C $_pkgname check
}
package() {
make -C $_pkgname DESTDIR="$pkgdir" install
}
|