diff options
author | Stefano Karapetsas <[email protected]> | 2013-07-17 16:00:13 +0200 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2013-07-17 16:00:13 +0200 |
commit | e4f05bf9db1a5e69c6a17afa35879d3757be8b85 (patch) | |
tree | 9b81c750755b2fc1edb56dd95e66505c59401e1f /distro/ubuntu | |
parent | 1e723b72fe039940825630b0cc0935b0e80946a4 (diff) | |
download | libmatekbd-e4f05bf9db1a5e69c6a17afa35879d3757be8b85.tar.bz2 libmatekbd-e4f05bf9db1a5e69c6a17afa35879d3757be8b85.tar.xz |
Remove obsolete distro folder
Diffstat (limited to 'distro/ubuntu')
-rwxr-xr-x | distro/ubuntu/build | 27 | ||||
-rwxr-xr-x | distro/ubuntu/postinst | 9 | ||||
-rwxr-xr-x | distro/ubuntu/postrm | 6 | ||||
-rwxr-xr-x | distro/ubuntu/preinst | 8 | ||||
-rwxr-xr-x | distro/ubuntu/prerm | 11 |
5 files changed, 0 insertions, 61 deletions
diff --git a/distro/ubuntu/build b/distro/ubuntu/build deleted file mode 100755 index 85d6d67..0000000 --- a/distro/ubuntu/build +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/bash - -# fill it -pkgname=libmatekbd -pkgver=1.1.0 -pkgrel=2 -pkgdesc="MATE keyboard library" -#depends="libxklavier, mate-conf" -# editar esta funcion! -build() { - cd $pkgsrc - # descomprimir - tar xvzf download - # entramos a la carpeta - cd ${pkgname} - - ./configure --prefix=/usr --sysconfdir=/etc --disable-static || 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 || 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 06416a1..0000000 --- a/distro/ubuntu/postinst +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh - -pkgname=libmatekbd - -if [ -f /usr/sbin/mateconfpkg ]; then - /usr/sbin/mateconfpkg --install ${pkgname} -fi - -exit 0 diff --git a/distro/ubuntu/postrm b/distro/ubuntu/postrm deleted file mode 100755 index 63a1c18..0000000 --- a/distro/ubuntu/postrm +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/sh -set -e - -pkgname=libmatekbd - -exit 0 diff --git a/distro/ubuntu/preinst b/distro/ubuntu/preinst deleted file mode 100755 index e48f7d0..0000000 --- a/distro/ubuntu/preinst +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh -e - -pkgname=libmatekbd - -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 1b58440..0000000 --- a/distro/ubuntu/prerm +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/bash - -set -e - -pkgname=libmatekbd - -if [ -f /usr/sbin/mateconfpkg ]; then - /usr/sbin/mateconfpkg --uninstall ${pkgname} -fi - -exit 0 |