diff options
author | Steve Zesch <[email protected]> | 2012-07-12 14:37:53 -0400 |
---|---|---|
committer | Steve Zesch <[email protected]> | 2012-07-12 14:37:53 -0400 |
commit | 38dad5577a382e7d98d90f92b6eea6faf4d3cf99 (patch) | |
tree | d226b7e5d651b2126083f3f3190c369d65143c9d /distro/ubuntu | |
parent | 877bd1e3c1390ca58b72c61c9df421eb5a1bbd28 (diff) | |
download | eom-38dad5577a382e7d98d90f92b6eea6faf4d3cf99.tar.bz2 eom-38dad5577a382e7d98d90f92b6eea6faf4d3cf99.tar.xz |
Preparing for 1.4 release.mate-image-viewer-1.4.0
Diffstat (limited to 'distro/ubuntu')
-rwxr-xr-x | distro/ubuntu/build | 30 | ||||
-rwxr-xr-x | distro/ubuntu/postinst | 8 | ||||
-rwxr-xr-x | distro/ubuntu/postrm | 8 | ||||
-rwxr-xr-x | distro/ubuntu/preinst | 9 | ||||
-rwxr-xr-x | distro/ubuntu/prerm | 12 |
5 files changed, 0 insertions, 67 deletions
diff --git a/distro/ubuntu/build b/distro/ubuntu/build deleted file mode 100755 index 5130aa3..0000000 --- a/distro/ubuntu/build +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/bash - -# fill it -pkgname=mate-image-viewer -pkgver=1.1.0 -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 deleted file mode 100755 index d89b3a5..0000000 --- a/distro/ubuntu/postinst +++ /dev/null @@ -1,8 +0,0 @@ -#!/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 deleted file mode 100755 index 76da030..0000000 --- a/distro/ubuntu/postrm +++ /dev/null @@ -1,8 +0,0 @@ -#!/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 deleted file mode 100755 index 81c176a..0000000 --- a/distro/ubuntu/preinst +++ /dev/null @@ -1,9 +0,0 @@ -#!/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 deleted file mode 100755 index aa60ccb..0000000 --- a/distro/ubuntu/prerm +++ /dev/null @@ -1,12 +0,0 @@ -#!/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 |