diff options
author | Steve Zesch <[email protected]> | 2012-07-12 14:55:10 -0400 |
---|---|---|
committer | Steve Zesch <[email protected]> | 2012-07-12 14:55:10 -0400 |
commit | ed445b315c23031bd4c2d9357459e744e52479fe (patch) | |
tree | ae8b0aa58a4c81cece9294dcbf57d4c8748c1a1e /distro/ubuntu/build | |
parent | 4f9e5e2320f0a27fe676962b71d5160efec479a7 (diff) | |
download | mate-system-monitor-ed445b315c23031bd4c2d9357459e744e52479fe.tar.bz2 mate-system-monitor-ed445b315c23031bd4c2d9357459e744e52479fe.tar.xz |
Preparing for 1.4 release.mate-system-monitor-1.4.0
Diffstat (limited to 'distro/ubuntu/build')
-rwxr-xr-x | distro/ubuntu/build | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/distro/ubuntu/build b/distro/ubuntu/build deleted file mode 100755 index 290e1d1..0000000 --- a/distro/ubuntu/build +++ /dev/null @@ -1,35 +0,0 @@ -#!/bin/bash - -# fill it -pkgname=mate-system-monitor -pkgver=1.1.0 -pkgrel=1 -pkgdesc="A system monitor for MATE" - -# editar esta funcion! -build() { - cd $pkgsrc - # descomprimir - tar xvzf download - # entramos a la carpeta - cd ${pkgname} - - ./configure --prefix=/usr --sysconfdir=/etc \ - --libexecdir=/usr/lib/${pkgname} \ - --localstatedir=/var --disable-static \ - --disable-scrollkeeper \ - --disable-schemas-install || return 1 - - # there is some pre-compiled files on the tar - make || return 1 - - make MATECONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="${pkgdir}" install || return 1 - #rm -f ${pkgdir}/usr/lib/*.la # can be used options=(!libtools) - - install -m755 -d "${pkgdir}/usr/share/mateconf/schemas" - mateconf-merge-schema "${pkgdir}/usr/share/mateconf/schemas/${pkgname}.schemas" --domain ${pkgname} ${pkgdir}/etc/mateconf/schemas/*.schemas || return 1 - rm -f ${pkgdir}/etc/mateconf/schemas/*.schemas -} - -# esto incluye la parte que se repite en la mayoria de los builds -. /usr/share/mate-doc-utils/mate-debian.sh |