blob: c9be398ad49aeda0c05211c5a2a5664eacfc06b9 (
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: Sam Burgos <santiago.burgos1089@gmail.com>
pkgname=mint-themes
pkgver=2.2.1
pkgrel=1
pkgdesc='A collection of Mint themes.'
arch=('any')
url="https://github.com/linuxmint/mint-themes"
_url="http://packages.linuxmint.com/pool/main/m/${pkgname}"
license=('GPL-3.0-or-later')
depends=(
'ttf-ubuntu-font-family'
)
makedepends=(
'python-libsass'
)
optdepends=(
'mint-x-icons'
'mint-y-icons'
)
options=('!strip')
source=("${pkgname}_${pkgver}.tar.xz::${_url}/${pkgname}_${pkgver}.tar.xz")
sha256sums=('c3724ff7d57a849c7ee66d57b29c2307ead2af89901d67a72617880f3f733abe')
build() {
cd "$pkgname"
make clean
make
}
package() {
cd "$pkgname"
cp -r usr "$pkgdir/"
}
|