diff options
author | Perberos <[email protected]> | 2011-12-01 23:52:01 -0300 |
---|---|---|
committer | Perberos <[email protected]> | 2011-12-01 23:52:01 -0300 |
commit | 28a029a4990d2a84f9d6a0b890eba812ea503998 (patch) | |
tree | 7a69477d0dd6bf351801fa9698d95224e4fe47b6 /distro/ubuntu | |
download | marco-28a029a4990d2a84f9d6a0b890eba812ea503998.tar.bz2 marco-28a029a4990d2a84f9d6a0b890eba812ea503998.tar.xz |
moving from https://github.com/perberos/mate-desktop-environment
Diffstat (limited to 'distro/ubuntu')
-rwxr-xr-x | distro/ubuntu/build | 35 | ||||
-rwxr-xr-x | distro/ubuntu/postinst | 9 | ||||
-rwxr-xr-x | distro/ubuntu/preinst | 8 | ||||
-rwxr-xr-x | distro/ubuntu/prerm | 11 |
4 files changed, 63 insertions, 0 deletions
diff --git a/distro/ubuntu/build b/distro/ubuntu/build new file mode 100755 index 00000000..776572ca --- /dev/null +++ b/distro/ubuntu/build @@ -0,0 +1,35 @@ +#!/bin/bash + +# fill it +pkgname=mate-window-manager +pkgver=2011.11.28 +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 new file mode 100755 index 00000000..18863d13 --- /dev/null +++ b/distro/ubuntu/postinst @@ -0,0 +1,9 @@ +#!/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 new file mode 100755 index 00000000..85d7a724 --- /dev/null +++ b/distro/ubuntu/preinst @@ -0,0 +1,8 @@ +#!/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 new file mode 100755 index 00000000..e05519b4 --- /dev/null +++ b/distro/ubuntu/prerm @@ -0,0 +1,11 @@ +#!/bin/bash + +set -e + +pkgname=mate-window-manager + +if [ -f /usr/sbin/mateconfpkg ]; then + /usr/sbin/mateconfpkg --uninstall ${pkgname} +fi + +exit 0 |