blob: 001a20283b4c8845b12c17eb908da0db21c9f5f0 (
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
|
#!/bin/bash
# fill it
pkgname=mate-polkit
pkgver=2011.10.29
pkgrel=1
pkgdesc="PolicyKit integration for the MATE desktop"
#depends="polkit, gtk2"
# editar esta funcion!
build() {
cd $pkgsrc
# descomprimir
tar xvzf download
# entramos a la carpeta
cd ${pkgname}
./configure --prefix=/usr --sysconfdir=/etc \
--localstatedir=/var --libexecdir=/usr/lib/polkit-mate \
--disable-static
make
make DESTDIR="${pkgdir}" install
}
# esto incluye la parte que se repite en la mayoria de los builds
. /usr/share/mate-doc-utils/mate-debian.sh
|