This commit is contained in:
Perberos
2011-11-07 16:46:58 -03:00
commit 528c1e5ff5
532 changed files with 709826 additions and 0 deletions

33
distro/ubuntu/build Executable file
View File

@@ -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

8
distro/ubuntu/postinst Executable file
View File

@@ -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

7
distro/ubuntu/postrm Executable file
View File

@@ -0,0 +1,7 @@
#!/bin/sh -e
pkgname=mate-text-editor
gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
exit 0

6
distro/ubuntu/preinst Executable file
View File

@@ -0,0 +1,6 @@
#!/bin/sh -e
pkgname=mate-text-editor
/usr/sbin/mateconfpkg --uninstall ${pkgname}

7
distro/ubuntu/prerm Executable file
View File

@@ -0,0 +1,7 @@
#!/bin/sh -e
pkgname=mate-text-editor
/usr/sbin/mateconfpkg --uninstall ${pkgname}
exit 0