diff options
Diffstat (limited to 'distro/ubuntu')
-rwxr-xr-x | distro/ubuntu/build | 33 | ||||
-rwxr-xr-x | distro/ubuntu/postinst | 8 | ||||
-rwxr-xr-x | distro/ubuntu/postrm | 7 | ||||
-rwxr-xr-x | distro/ubuntu/preinst | 6 | ||||
-rwxr-xr-x | distro/ubuntu/prerm | 7 |
5 files changed, 61 insertions, 0 deletions
diff --git a/distro/ubuntu/build b/distro/ubuntu/build new file mode 100755 index 00000000..c5ad62ab --- /dev/null +++ b/distro/ubuntu/build @@ -0,0 +1,33 @@ +#!/bin/bash + +# fill it +pkgname=mate-text-editor +pkgver=2011.08.31 +pkgrel=1 +pkgdesc="An powerfull text editor for MATE" +depends=('mate-conf') + +# editar esta funcion! +build() { + cd $pkgsrc + # descomprimir + tar xvzf download + # entramos a la carpeta + cd ${pkgname} + + intltoolize --force --copy --automake || die "intltoolize failed" + + ./configure --prefix=/usr --sysconfdir=/etc \ + --localstatedir=/var --libexecdir=/usr/lib/ \ + --disable-scrollkeeper --enable-python || return 1 + make || return 1 + + make MATECONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="${pkgdir}" install || return 1 + + 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..4b277286 --- /dev/null +++ b/distro/ubuntu/postinst @@ -0,0 +1,8 @@ +#!/bin/sh -e + +pkgname=mate-text-editor + +/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..09b0c596 --- /dev/null +++ b/distro/ubuntu/postrm @@ -0,0 +1,7 @@ +#!/bin/sh -e + +pkgname=mate-text-editor + +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..d38cd063 --- /dev/null +++ b/distro/ubuntu/preinst @@ -0,0 +1,6 @@ +#!/bin/sh -e + +pkgname=mate-text-editor + +/usr/sbin/mateconfpkg --uninstall ${pkgname} + diff --git a/distro/ubuntu/prerm b/distro/ubuntu/prerm new file mode 100755 index 00000000..dd14f340 --- /dev/null +++ b/distro/ubuntu/prerm @@ -0,0 +1,7 @@ +#!/bin/sh -e + +pkgname=mate-text-editor + +/usr/sbin/mateconfpkg --uninstall ${pkgname} + +exit 0 |