blob: 7ee16b2390e25c1fd36dc33eda6b84058e442b94 (
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
|
# Maintainer: Sam Burgos < sam dot burgos1089 at gmail dot com >
pkgname=mint-themes
pkgver=1.7.2
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=('mint-y-icons'
'mint-x-icons')
makedepends=('gtk3'
'ruby-sass')
conflicts=("mint-x-theme"
"mint-y-theme"
"mint-cinnamon-themes")
source=("${pkgname}_${pkgver}.tar.xz::${url}/${pkgname}_${pkgver}.tar.xz")
sha256sums=('d1350d7de04f862bee08b45b2ad505d5826a6dafd545a6eaae1369fa6b4dec21')
build() {
cd "${pkgname}"
make
}
package() {
cd "${srcdir}"/"${pkgname}"
cp -r usr $pkgdir
}
|