diff options
Diffstat (limited to 'distro/ubuntu')
-rwxr-xr-x | distro/ubuntu/build | 31 | ||||
-rwxr-xr-x | distro/ubuntu/postinst | 15 | ||||
-rwxr-xr-x | distro/ubuntu/postrm | 8 | ||||
-rwxr-xr-x | distro/ubuntu/preinst | 7 | ||||
-rwxr-xr-x | distro/ubuntu/prerm | 16 |
5 files changed, 77 insertions, 0 deletions
diff --git a/distro/ubuntu/build b/distro/ubuntu/build new file mode 100755 index 00000000..287939d2 --- /dev/null +++ b/distro/ubuntu/build @@ -0,0 +1,31 @@ +#!/bin/bash + +# fill it +pkgname=mate-panel +pkgver=2011.10.29 +pkgrel=1 +pkgdesc="The MATE Panel" +depends=('libwnck22' 'mate-conf' 'mate-menus' 'mate-desktop' 'librsvg2-2' 'hicolor-icon-theme' 'libcanberra-gtk0' 'libmatecomponentui' 'libmateweather') # 'evolution-data-server' + +# 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 \ + --libexecdir=/usr/lib/mate-panel \ + --disable-scrollkeeper --enable-introspection --enable-matecomponent || return 1 + 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 +} + +# 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..e4d39c19 --- /dev/null +++ b/distro/ubuntu/postinst @@ -0,0 +1,15 @@ +#!/bin/sh + +pkgname=mate-panel + +MATECONF_CONFIG_SOURCE=`/usr/bin/mateconftool-2 --get-default-source` +/usr/bin/mateconftool-2 --config-source="${MATECONF_CONFIG_SOURCE}" --direct --load \ + /etc/mateconf/schemas/panel-default-setup.entries >/dev/null + +if [ -f /usr/sbin/mateconfpkg ]; then + /usr/sbin/mateconfpkg --install ${pkgname} +fi + +gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor + +exit 0 diff --git a/distro/ubuntu/postrm b/distro/ubuntu/postrm new file mode 100755 index 00000000..fde2854c --- /dev/null +++ b/distro/ubuntu/postrm @@ -0,0 +1,8 @@ +#!/bin/sh +set -e + +pkgname=mate-panel + +gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor + +exit 0 diff --git a/distro/ubuntu/preinst b/distro/ubuntu/preinst new file mode 100755 index 00000000..9d4fea09 --- /dev/null +++ b/distro/ubuntu/preinst @@ -0,0 +1,7 @@ +#!/bin/sh -e + +pkgname=mate-panel + +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..fffeaefb --- /dev/null +++ b/distro/ubuntu/prerm @@ -0,0 +1,16 @@ +#!/bin/bash + +set -e + +pkgname=mate-panel + +MATECONF_CONFIG_SOURCE=`usr/bin/mateconftool-2 --get-default-source` + +/usr/bin/mateconftool-2 --config-source="${MATECONF_CONFIG_SOURCE}" --direct --unload \ + /etc/mateconf/schemas/panel-default-setup.entries > /dev/null + +if [ -f /usr/sbin/mateconfpkg ]; then + /usr/sbin/mateconfpkg --uninstall ${pkgname} +fi + +exit 0 |