From 6f3aa7937bbf28bb0037a7d60afe6f5548713749 Mon Sep 17 00:00:00 2001 From: Steve Zesch Date: Thu, 23 Feb 2012 21:10:59 -0500 Subject: Preparing for 1.2 release --- distro/ubuntu/build | 35 ----------------------------------- distro/ubuntu/postinst | 9 --------- distro/ubuntu/preinst | 8 -------- distro/ubuntu/prerm | 11 ----------- 4 files changed, 63 deletions(-) delete mode 100755 distro/ubuntu/build delete mode 100755 distro/ubuntu/postinst delete mode 100755 distro/ubuntu/preinst delete mode 100755 distro/ubuntu/prerm (limited to 'distro') diff --git a/distro/ubuntu/build b/distro/ubuntu/build deleted file mode 100755 index 83515675..00000000 --- a/distro/ubuntu/build +++ /dev/null @@ -1,35 +0,0 @@ -#!/bin/bash - -# fill it -pkgname=mate-window-manager -pkgver=1.1.0 -pkgrel=1 -pkgdesc="A window manager for MATE" -depends=('mate-conf' 'mate-dialogs' 'libgtop2-7' 'libwnck22') -# editar esta funcion! -build() { - cd $pkgsrc - # descomprimir - tar xvzf download - # entramos a la carpeta - cd ${pkgname} - - ./autogen.sh \ - --prefix=/usr \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --libexecdir=/usr/lib/${pkgname} \ - --disable-static \ - --disable-startup-notification \ - --disable-scrollkeeper || return 1 - make || return 1 - - make MATECONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="${pkgdir}" install - - 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 - 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 18863d13..00000000 --- a/distro/ubuntu/postinst +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh - -pkgname=mate-window-manager - -if [ -f /usr/sbin/mateconfpkg ]; then - /usr/sbin/mateconfpkg --install ${pkgname} -fi - -exit 0 diff --git a/distro/ubuntu/preinst b/distro/ubuntu/preinst deleted file mode 100755 index 85d7a724..00000000 --- a/distro/ubuntu/preinst +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh -e - -pkgname=mate-window-manager - -if [ -f /usr/sbin/mateconfpkg ]; then - /usr/sbin/mateconfpkg --uninstall ${pkgname} -fi - diff --git a/distro/ubuntu/prerm b/distro/ubuntu/prerm deleted file mode 100755 index e05519b4..00000000 --- a/distro/ubuntu/prerm +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/bash - -set -e - -pkgname=mate-window-manager - -if [ -f /usr/sbin/mateconfpkg ]; then - /usr/sbin/mateconfpkg --uninstall ${pkgname} -fi - -exit 0 -- cgit v1.2.1