diff options
author | Perberos <[email protected]> | 2012-07-19 14:17:16 -0700 |
---|---|---|
committer | Perberos <[email protected]> | 2012-07-19 14:17:16 -0700 |
commit | 78f1e23185a2853a41e536caf07f9c6dc1208ecd (patch) | |
tree | 3cc3551cf94c738bea7f14d79ac20e9fdadef898 /distro | |
parent | d42fb230451217ce424a7d58147ad0b90da93480 (diff) | |
parent | 568a0926c1c8c3798f931add5e71edf480ebf3cd (diff) | |
download | mate-desktop-78f1e23185a2853a41e536caf07f9c6dc1208ecd.tar.bz2 mate-desktop-78f1e23185a2853a41e536caf07f9c6dc1208ecd.tar.xz |
Merge pull request #1 from mate-desktop/master
up
Diffstat (limited to 'distro')
-rwxr-xr-x | distro/ubuntu/build | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/distro/ubuntu/build b/distro/ubuntu/build deleted file mode 100755 index 36dab8f..0000000 --- a/distro/ubuntu/build +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/bash - -# fill it -pkgname=mate-desktop -pkgver=1.1.0 -pkgrel=1 -pkgdesc="Library with common API for various MATE modules" -depends=('mate-conf' 'gtk2-engines-pixbuf') -# editar esta funcion! -build() { - cd $pkgsrc - # descomprimir - tar xvzf download - # entramos a la carpeta - cd ${pkgname} - - ./configure --prefix=/usr --sysconfdir=/etc \ - --localstatedir=/var --disable-static --disable-scrollkeeper || return 1 - - make || return 1 - make DESTDIR="$pkgdir" install || return 1 - - # prevent conflicts errors - mv "${pkgdir}/usr/share/omf" "${pkgdir}/usr/share/mate-omf" - #rm -rf ${pkgdir}/usr/share/omf -} - -# esto incluye la parte que se repite en la mayoria de los builds -. /usr/share/mate-doc-utils/mate-debian.sh |