summaryrefslogtreecommitdiff
path: root/distro/ubuntu/build
blob: ec976d057fe7fe09721b4158a489524ec54395e8 (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.12.01
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