diff options
author | Perberos <[email protected]> | 2011-12-01 21:46:33 -0300 |
---|---|---|
committer | Perberos <[email protected]> | 2011-12-01 21:46:33 -0300 |
commit | 9d1d71a22f9acf0c5c283064b805166ad612013b (patch) | |
tree | 10546fa370323cb9468ab9da26a36eb2147037b9 /distro/ubuntu | |
download | mate-common-9d1d71a22f9acf0c5c283064b805166ad612013b.tar.bz2 mate-common-9d1d71a22f9acf0c5c283064b805166ad612013b.tar.xz |
moving from https://github.com/perberos/mate-desktop-environment
Diffstat (limited to 'distro/ubuntu')
-rwxr-xr-x | distro/ubuntu/build | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/distro/ubuntu/build b/distro/ubuntu/build new file mode 100755 index 0000000..2b7fdc4 --- /dev/null +++ b/distro/ubuntu/build @@ -0,0 +1,23 @@ +#!/bin/bash + +# fill it +pkgname=mate-common +pkgver=2011.10.29 +pkgrel=1 +pkgdesc="Common development macros for MATE" + +# editar esta funcion! +build() { + cd $pkgsrc + # descomprimir + tar xvzf download + # entramos a la carpeta + cd ${pkgname} + + ./configure --prefix=/usr || return 1 + make || return 1 + make DESTDIR="${pkgdir}" install || return 1 +} + +# esto incluye la parte que se repite en la mayoria de los builds +. /usr/share/mate-doc-utils/mate-debian.sh |