From a8d28a6ce7e0c56dacba5d527d9134573a008902 Mon Sep 17 00:00:00 2001 From: Perberos Date: Sun, 6 Nov 2011 19:30:49 -0300 Subject: inicial --- distro/ubuntu/build | 30 ++++++++++++++++++++++++++++++ distro/ubuntu/postinst | 8 ++++++++ distro/ubuntu/postrm | 8 ++++++++ distro/ubuntu/preinst | 9 +++++++++ distro/ubuntu/prerm | 12 ++++++++++++ 5 files changed, 67 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 0000000..354859b --- /dev/null +++ b/distro/ubuntu/build @@ -0,0 +1,30 @@ +#!/bin/bash + +# fill it +pkgname=mate-image-viewer +pkgver=2011.08.31 +pkgrel=1 +pkgdesc="An image viewing and cataloging program for MATE" +#depends="gstreamer0.10-base-plugins, mate-panel, mate-character-map, libgtop, libmatenotify, cpufrequtils" +# editar esta funcion! +build() { + cd $pkgsrc + # descomprimir + tar xvzf download + # entramos a la carpeta + cd ${pkgname} + + ./configure --prefix=/usr --sysconfdir=/etc \ + --localstatedir=/var --disable-scrollkeeper || 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 0000000..d89b3a5 --- /dev/null +++ b/distro/ubuntu/postinst @@ -0,0 +1,8 @@ +#!/bin/sh + +pkgname=mate-image-viewer + +/usr/sbin/mateconfpkg --install ${pkgname} +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 0000000..76da030 --- /dev/null +++ b/distro/ubuntu/postrm @@ -0,0 +1,8 @@ +#!/bin/sh +set -e + +pkgname=mate-image-viewer + +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 0000000..81c176a --- /dev/null +++ b/distro/ubuntu/preinst @@ -0,0 +1,9 @@ +#!/bin/sh -e + +pkgname=mate-image-viewer + +if [ -f /usr/share/mateconf/schemas/${pkgname}.schemas ]; then + /usr/sbin/mateconfpkg --uninstall ${pkgname} +fi + + diff --git a/distro/ubuntu/prerm b/distro/ubuntu/prerm new file mode 100755 index 0000000..aa60ccb --- /dev/null +++ b/distro/ubuntu/prerm @@ -0,0 +1,12 @@ +#!/bin/bash + +set -e + +pkgname=mate-image-viewer + +if [ -f /usr/share/mateconf/schemas/${pkgname}.schemas ]; then + /usr/sbin/mateconfpkg --uninstall ${pkgname} +fi + + +exit 0 -- cgit v1.2.1