blob: e6a7dfba628c14f0eef62c20fb27723f198cc3ef (
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
|
#!/bin/bash
# fill it
pkgname=mate-icon-theme
pkgver=1.1.1
pkgrel=1
pkgdesc="MATE icon theme"
#depends="hicolor-icon-theme, icon-naming-utils, gtk-update-icon-cache"
# editar esta funcion!
build() {
cd $pkgsrc
# descomprimir
tar xvzf download
# entramos a la carpeta
cd ${pkgname}
./configure --prefix=/usr
make
make DESTDIR="${pkgdir}" install
#don't include icon cache
rm -f "${pkgdir}/usr/share/icons/mate/icon-theme.cache"
}
# esto incluye la parte que se repite en la mayoria de los builds
. /usr/share/mate-doc-utils/mate-debian.sh
|