From 53df40e0f61c25e078a76fc1a10e92597ce037cb Mon Sep 17 00:00:00 2001 From: Stefano Karapetsas Date: Tue, 28 Feb 2012 23:39:15 +0100 Subject: removed distro/ubuntu folder --- distro/ubuntu/build | 32 -------------------------------- distro/ubuntu/postinst | 11 ----------- distro/ubuntu/postrm | 8 -------- distro/ubuntu/preinst | 7 ------- distro/ubuntu/prerm | 11 ----------- 5 files changed, 69 deletions(-) delete mode 100755 distro/ubuntu/build delete mode 100755 distro/ubuntu/postinst delete mode 100755 distro/ubuntu/postrm 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 4b33aff..0000000 --- a/distro/ubuntu/build +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/bash - -# fill it -pkgname=mate-settings-daemon -pkgver=1.1.1 -pkgrel=1 -pkgdesc="Common libraries for MATE" -depends=('libmatekbd' 'mate-desktop' 'libmatenotify' 'hicolor-icon-theme') - -# editar esta funcion! -build() { - cd $pkgsrc - # descomprimir - tar xvzf download - # entramos a la carpeta - cd ${pkgname} - - ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \ - --libexecdir=/usr/bin/${pkgname} \ - --disable-static --disable-pulse --disable-schemas-install \ - --enable-polkit || return 1 - make || return 1 - - make DESTDIR="${pkgdir}" MATECONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 install || return 1 - - install -d -m755 "${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 1305b3a..0000000 --- a/distro/ubuntu/postinst +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh - -pkgname=mate-settings-daemon - -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 deleted file mode 100755 index 13ad9af..0000000 --- a/distro/ubuntu/postrm +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh -set -e - -pkgname=mate-settings-daemon - -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 818847c..0000000 --- a/distro/ubuntu/preinst +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh -e - -pkgname=mate-settings-daemon - -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 1589808..0000000 --- a/distro/ubuntu/prerm +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/bash - -set -e - -pkgname=mate-settings-daemon - -if [ -f /usr/sbin/mateconfpkg ]; then - /usr/sbin/mateconfpkg --uninstall ${pkgname} -fi - -exit 0 -- cgit v1.2.1