summaryrefslogtreecommitdiff
path: root/distro
diff options
context:
space:
mode:
authorStefano Karapetsas <[email protected]>2012-02-28 23:39:15 +0100
committerStefano Karapetsas <[email protected]>2012-02-28 23:39:15 +0100
commit53df40e0f61c25e078a76fc1a10e92597ce037cb (patch)
treef362ba7e217aef4dbc955774c95926fd95f366ef /distro
parent2dfe3164d9f195b50e066def8e2a4782b5910c10 (diff)
downloadmate-settings-daemon-53df40e0f61c25e078a76fc1a10e92597ce037cb.tar.bz2
mate-settings-daemon-53df40e0f61c25e078a76fc1a10e92597ce037cb.tar.xz
removed distro/ubuntu folder
Diffstat (limited to 'distro')
-rwxr-xr-xdistro/ubuntu/build32
-rwxr-xr-xdistro/ubuntu/postinst11
-rwxr-xr-xdistro/ubuntu/postrm8
-rwxr-xr-xdistro/ubuntu/preinst7
-rwxr-xr-xdistro/ubuntu/prerm11
5 files changed, 0 insertions, 69 deletions
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