diff options
author | Perberos <[email protected]> | 2011-11-14 18:24:48 -0300 |
---|---|---|
committer | Perberos <[email protected]> | 2011-11-14 18:24:48 -0300 |
commit | 312ba610a1e98fc656fb58178227d7d45a64494e (patch) | |
tree | 54a3c2b6084c80e63fb0526c6e7b8e01627acbd7 /distro/ubuntu | |
download | mate-applets-312ba610a1e98fc656fb58178227d7d45a64494e.tar.bz2 mate-applets-312ba610a1e98fc656fb58178227d7d45a64494e.tar.xz |
initial
Diffstat (limited to 'distro/ubuntu')
-rwxr-xr-x | distro/ubuntu/build | 42 | ||||
-rwxr-xr-x | distro/ubuntu/postinst | 8 | ||||
-rwxr-xr-x | distro/ubuntu/postrm | 8 | ||||
-rwxr-xr-x | distro/ubuntu/preinst | 6 | ||||
-rwxr-xr-x | distro/ubuntu/prerm | 9 |
5 files changed, 73 insertions, 0 deletions
diff --git a/distro/ubuntu/build b/distro/ubuntu/build new file mode 100755 index 00000000..9873e1ea --- /dev/null +++ b/distro/ubuntu/build @@ -0,0 +1,42 @@ +#!/bin/bash + +# fill it +pkgname=mate-applets +pkgver=2011.08.31 +pkgrel=1 +pkgdesc="MATE Applets" +depends=('gstreamer0.10-plugins-base' 'mate-panel' 'mate-character-map' 'libgtop2-7' 'libmatenotify' 'cpufrequtils') +conflicts=('gnome-applets-data') + +# editar esta funcion! +build() { + cd $pkgsrc + # descomprimir + tar xvzf download + # entramos a la carpeta + cd ${pkgname} + + mate-doc-prepare + autoreconf -i + automake + + ./configure --prefix=/usr --sysconfdir=/etc \ + --libexecdir=/usr/lib/${pkgname} \ + --localstatedir=/var --disable-static \ + --disable-scrollkeeper --enable-mixer-applet \ + --disable-schemas-install || return 1 + + # there is some pre-compiled files on the tar + make clean + make || return 1 + + make MATECONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="${pkgdir}" install || return 1 + #rm -f ${pkgdir}/usr/lib/*.la # can be used options=(!libtools) + + 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 00000000..37ae8574 --- /dev/null +++ b/distro/ubuntu/postinst @@ -0,0 +1,8 @@ +#!/bin/sh + +pkgname=mate-applets + +/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 00000000..425e5b8d --- /dev/null +++ b/distro/ubuntu/postrm @@ -0,0 +1,8 @@ +#!/bin/sh +set -e + +pkgname=mate-applets + +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 00000000..5a622b01 --- /dev/null +++ b/distro/ubuntu/preinst @@ -0,0 +1,6 @@ +#!/bin/sh -e + +pkgname=mate-applets + +/usr/sbin/mateconfpkg --uninstall ${pkgname} + diff --git a/distro/ubuntu/prerm b/distro/ubuntu/prerm new file mode 100755 index 00000000..dc9e6e11 --- /dev/null +++ b/distro/ubuntu/prerm @@ -0,0 +1,9 @@ +#!/bin/bash + +set -e + +pkgname=mate-applets + +/usr/sbin/mateconfpkg --uninstall ${pkgname} + +exit 0 |