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]>2013-07-17 16:00:13 +0200
commite4f05bf9db1a5e69c6a17afa35879d3757be8b85 (patch)
tree9b81c750755b2fc1edb56dd95e66505c59401e1f /distro/ubuntu/build
parent1e723b72fe039940825630b0cc0935b0e80946a4 (diff)
downloadlibmatekbd-e4f05bf9db1a5e69c6a17afa35879d3757be8b85.tar.bz2
libmatekbd-e4f05bf9db1a5e69c6a17afa35879d3757be8b85.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