summaryrefslogtreecommitdiff
path: root/distro
diff options
context:
space:
mode:
authorSteve Zesch <[email protected]>2012-07-05 13:55:50 -0400
committerSteve Zesch <[email protected]>2012-07-05 13:55:50 -0400
commit568a0926c1c8c3798f931add5e71edf480ebf3cd (patch)
tree3cc3551cf94c738bea7f14d79ac20e9fdadef898 /distro
parentd42fb230451217ce424a7d58147ad0b90da93480 (diff)
downloadmate-desktop-568a0926c1c8c3798f931add5e71edf480ebf3cd.tar.bz2
mate-desktop-568a0926c1c8c3798f931add5e71edf480ebf3cd.tar.xz
Preparing for 1.4.0 release.mate-desktop-1.4.0
Diffstat (limited to 'distro')
-rwxr-xr-xdistro/ubuntu/build29
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