From 0b0e6bc987da4fd88a7854ebb12bde705e92c428 Mon Sep 17 00:00:00 2001 From: Perberos Date: Thu, 1 Dec 2011 21:51:44 -0300 Subject: moving from https://github.com/perberos/mate-desktop-environment --- distro/ubuntu/build | 33 +++++++++++++++++++++++++++++++++ distro/ubuntu/postinst | 13 +++++++++++++ distro/ubuntu/postrm | 10 ++++++++++ distro/ubuntu/preinst | 8 ++++++++ distro/ubuntu/prerm | 11 +++++++++++ 5 files changed, 75 insertions(+) create mode 100755 distro/ubuntu/build create mode 100755 distro/ubuntu/postinst create mode 100755 distro/ubuntu/postrm create mode 100755 distro/ubuntu/preinst create mode 100755 distro/ubuntu/prerm (limited to 'distro/ubuntu') diff --git a/distro/ubuntu/build b/distro/ubuntu/build new file mode 100755 index 00000000..1bd1cf77 --- /dev/null +++ b/distro/ubuntu/build @@ -0,0 +1,33 @@ +#!/bin/bash + +# fill it +pkgname=mate-control-center +pkgver=2011.10.29 +pkgrel=1 +pkgdesc="The Control Center for MATE" +#depends="mate-window-manager, libxss, desktop-file-utils, mate-settings-daemon, libmatekbd, libcanberra, sound-theme-freedesktop, libunique, mate-menus, librsvg" +# 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 --disable-update-mimedb || return 1 + # --enable-aboutme <- this requires libebook (from evolution) + make || return 1 + make MATECONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="${pkgdir}" install || return 1 + + 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 + + # --disable-update-mimedb? + rm -f "${pkgdir}/usr/share/applications/mimeinfo.cache" +} + +# esto incluye la parte que se repite en la mayoria de los builds +. /usr/share/mate-doc-utils/mate-debian.sh diff --git a/distro/ubuntu/postinst b/distro/ubuntu/postinst new file mode 100755 index 00000000..850107d9 --- /dev/null +++ b/distro/ubuntu/postinst @@ -0,0 +1,13 @@ +#!/bin/sh + +pkgname=mate-control-center + +if [ -f /usr/sbin/mateconfpkg ]; then + /usr/sbin/mateconfpkg --install ${pkgname} +fi + +update-desktop-database -q +gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor +update-mime-database /usr/share/mime + +exit 0 diff --git a/distro/ubuntu/postrm b/distro/ubuntu/postrm new file mode 100755 index 00000000..c27940a4 --- /dev/null +++ b/distro/ubuntu/postrm @@ -0,0 +1,10 @@ +#!/bin/sh +set -e + +pkgname=mate-control-center + +update-desktop-database -q +gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor +update-mime-database /usr/share/mime + +exit 0 diff --git a/distro/ubuntu/preinst b/distro/ubuntu/preinst new file mode 100755 index 00000000..9d1435d8 --- /dev/null +++ b/distro/ubuntu/preinst @@ -0,0 +1,8 @@ +#!/bin/sh -e + +pkgname=mate-control-center + +if [ -f /usr/sbin/mateconfpkg ]; then + /usr/sbin/mateconfpkg --uninstall ${pkgname} +fi + diff --git a/distro/ubuntu/prerm b/distro/ubuntu/prerm new file mode 100755 index 00000000..aeada993 --- /dev/null +++ b/distro/ubuntu/prerm @@ -0,0 +1,11 @@ +#!/bin/bash + +set -e + +pkgname=mate-control-center + +if [ -f /usr/sbin/mateconfpkg ]; then + /usr/sbin/mateconfpkg --uninstall ${pkgname} +fi + +exit 0 -- cgit v1.2.1