summaryrefslogtreecommitdiff
path: root/distro/ubuntu/build
diff options
context:
space:
mode:
authorStefano Karapetsas <[email protected]>2013-07-17 16:00:13 +0200
committerStefano Karapetsas <[email protected]>2014-01-01 14:12:33 +0100
commit2e9a5504af1b224b852f1d70ccf75810612eaf3f (patch)
tree6359b5a26dfc993b31f7192733f00a5bab0654a5 /distro/ubuntu/build
parent85f870a9b42216e658e31ef4451f60eb9c65a69a (diff)
downloadlibmatekbd-2e9a5504af1b224b852f1d70ccf75810612eaf3f.tar.bz2
libmatekbd-2e9a5504af1b224b852f1d70ccf75810612eaf3f.tar.xz
Remove obsolete distro folder
Diffstat (limited to 'distro/ubuntu/build')
-rwxr-xr-xdistro/ubuntu/build27
1 files changed, 0 insertions, 27 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