summaryrefslogtreecommitdiff
path: root/distro
diff options
context:
space:
mode:
Diffstat (limited to 'distro')
-rwxr-xr-xdistro/ubuntu/build31
-rwxr-xr-xdistro/ubuntu/postinst11
-rwxr-xr-xdistro/ubuntu/postrm7
-rwxr-xr-xdistro/ubuntu/preinst8
-rwxr-xr-xdistro/ubuntu/prerm9
5 files changed, 0 insertions, 66 deletions
diff --git a/distro/ubuntu/build b/distro/ubuntu/build
deleted file mode 100755
index 39969ba1..00000000
--- a/distro/ubuntu/build
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/bin/bash
-
-# fill it
-pkgname=mate-text-editor
-pkgver=1.1.0
-pkgrel=1
-pkgdesc="An powerfull text editor for MATE"
-depends=('mate-conf' 'python')
-
-# 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/ \
- --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
deleted file mode 100755
index d67f0dec..00000000
--- a/distro/ubuntu/postinst
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh -e
-
-pkgname=mate-text-editor
-
-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 09b0c596..00000000
--- a/distro/ubuntu/postrm
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/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
deleted file mode 100755
index 56db60a5..00000000
--- a/distro/ubuntu/preinst
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/sh -e
-
-pkgname=mate-text-editor
-
-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 565c7608..00000000
--- a/distro/ubuntu/prerm
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/sh -e
-
-pkgname=mate-text-editor
-
-if [ -f /usr/sbin/mateconfpkg ]; then
- /usr/sbin/mateconfpkg --uninstall ${pkgname}
-fi
-
-exit 0