summaryrefslogtreecommitdiff
path: root/distro/ubuntu/build
diff options
context:
space:
mode:
Diffstat (limited to 'distro/ubuntu/build')
-rwxr-xr-xdistro/ubuntu/build26
1 files changed, 0 insertions, 26 deletions
diff --git a/distro/ubuntu/build b/distro/ubuntu/build
deleted file mode 100755
index 38b03bc..0000000
--- a/distro/ubuntu/build
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/bash
-
-# fill it
-pkgname=python-caja
-pkgver=2011.12.01
-pkgrel=1
-pkgdesc="Python binding for Caja components"
-#depends="gstreamer0.10-base-plugins, mate-panel, mate-character-map, libgtop, libmatenotify, cpufrequtils"
-# editar esta funcion!
-build() {
- cd $pkgsrc
- # descomprimir
- tar xvzf download
- # entramos a la carpeta
- cd ${pkgname}
-
- ./configure --prefix=/usr --sysconfdir=/etc \
- --localstatedir=/var --disable-static || return 1
-
- # there is some pre-compiled files on the tar
- make || return 1
- make DESTDIR="${pkgdir}" install || return 1
-}
-
-# esto incluye la parte que se repite en la mayoria de los builds
-. /usr/share/mate-doc-utils/mate-debian.sh