blob: 5385c40e019765cc0c3e40072c3883cac4a6b762 (
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
|
# Maintainer: Sam Burgos <santiago.burgos1089@gmail.com>
pkgname=mint-themes
pkgver=2.1.5
pkgrel=1
pkgdesc='A collection of Mint themes. Includes GTK2, GTK3, Cinnamon and Xfce components.'
arch=('any')
url="http://packages.linuxmint.com/pool/main/m/${pkgname}"
license=(GPL3)
depends=(
ttf-ubuntu-font-family
)
makedepends=(
python
sassc
)
optdepends=(
mint-y-icons
mint-x-icons
)
conflicts=(
mint-x-theme
mint-y-theme
mint-cinnamon-themes
)
options=('!strip')
source=("${pkgname}_${pkgver}.tar.xz::${url}/${pkgname}_${pkgver}.tar.xz")
sha256sums=('685cff6598bdaf4b6813be3080368845f019e09e974e7f589b5f99acb3da2396')
build() {
cd "${srcdir}/${pkgname}"
make clean
make
}
package() {
cd "${srcdir}/${pkgname}"
cp -r usr "${pkgdir}/"
}
|