diff options
author | Steve Zesch <[email protected]> | 2012-07-11 12:59:44 -0400 |
---|---|---|
committer | Steve Zesch <[email protected]> | 2012-07-11 12:59:44 -0400 |
commit | c4d5a8bd28e6cb8c7888cdca4dc64170c2abff65 (patch) | |
tree | 03a87b0421a692ed4f1b87ae1a376acc86fb27be | |
parent | e079b9501ac0071b2393297b14719f9c5fe28c6a (diff) | |
download | python-caja-c4d5a8bd28e6cb8c7888cdca4dc64170c2abff65.tar.bz2 python-caja-c4d5a8bd28e6cb8c7888cdca4dc64170c2abff65.tar.xz |
Preparing for 1.4 release.python-caja-1.4.0
-rw-r--r-- | configure.in | 2 | ||||
-rwxr-xr-x | distro/ubuntu/build | 26 |
2 files changed, 1 insertions, 27 deletions
diff --git a/configure.in b/configure.in index 0da80e7..1efd756 100644 --- a/configure.in +++ b/configure.in @@ -1,7 +1,7 @@ AC_INIT PACKAGE=caja-python -VERSION=1.2.0 +VERSION=1.4.0 AC_SUBST(PACKAGE) AC_SUBST(VERSION) 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 |