blob: 864dd001d3053dc1aa9cfee3f07144b26caff6d0 (
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
|
# Maintainer: Manuel Domínguez López <mdomlop at gmail dot com>
_pkgver_year=2017
_pkgver_month=07
_pkgver_day=12
pkgname=retrosmart-icon-theme
pkgver=0.2
pkgrel=1
pkgdesc="Retrosmart icon theme."
url="https://github.com/mdomlop/${pkgname}"
source=("$pkgname-$pkgver.tar.gz::https://github.com/mdomlop/$pkgname/archive/$pkgver.tar.gz")
md5sums=('9f141aaed7b2ff0193586802fc7e2864')
license=('GPL3')
optdepends=('xcursor-retrosmart: The corresponding X11 cursor theme'
'retrosmart-aurorae-themes: The corresponding Aurorae themes'
'retrosmart-kvantum-theme: The corresponding theme for Kvantum'
'retrosmart-qtcurve-theme: The corresponding theme for QtCurve'
'retrosmart-xfwm4-themes: The corresponding themes for XFwm4'
'retrosmart-openbox-themes: The corresponding themes for Openbox')
arch=('any')
group=('retrosmart')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make install PREFIX=${pkgdir}/usr
}
|