diff options
author | Perberos <[email protected]> | 2011-12-01 23:00:56 -0300 |
---|---|---|
committer | Perberos <[email protected]> | 2011-12-01 23:00:56 -0300 |
commit | 1c69f467452c8f34d099019d463980ad57811192 (patch) | |
tree | 72ab1456032eb3c29f7fe327b5da6ac8e734507a /distro/ubuntu | |
download | mate-polkit-1c69f467452c8f34d099019d463980ad57811192.tar.bz2 mate-polkit-1c69f467452c8f34d099019d463980ad57811192.tar.xz |
moving from https://github.com/perberos/mate-desktop-environment
Diffstat (limited to 'distro/ubuntu')
-rwxr-xr-x | distro/ubuntu/build | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/distro/ubuntu/build b/distro/ubuntu/build new file mode 100755 index 0000000..001a202 --- /dev/null +++ b/distro/ubuntu/build @@ -0,0 +1,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 |