diff options
author | Stefano Karapetsas <[email protected]> | 2012-03-14 16:02:34 +0100 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2012-03-14 16:02:34 +0100 |
commit | 90ba962d08da1491f115684196f30b1960e42dcd (patch) | |
tree | 683baf9bd31ee791ec72c90d5cfa88f3a94eed12 /distro/ubuntu/build | |
parent | 4d5a20b123d4581db46b40f877229bc66d3e58e5 (diff) | |
download | mate-calc-90ba962d08da1491f115684196f30b1960e42dcd.tar.bz2 mate-calc-90ba962d08da1491f115684196f30b1960e42dcd.tar.xz |
removed distro/ubuntu folder
Diffstat (limited to 'distro/ubuntu/build')
-rwxr-xr-x | distro/ubuntu/build | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/distro/ubuntu/build b/distro/ubuntu/build deleted file mode 100755 index d59c275..0000000 --- a/distro/ubuntu/build +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/bash - -# fill it -pkgname=mate-calc -pkgver=1.1.0 -pkgrel=1 -pkgdesc="Calculator for the Mate desktop environment" -#depends=('gtk2' 'libxml2' 'libpng' 'freetype2' 'pixman' 'glib' 'pango' 'gdk-pixbuf2' 'cairo' 'atk') -# editar esta funcion! -build() { - cd $pkgsrc - # descomprimir - tar xvzf download - # entramos a la carpeta - cd ${pkgname} - - ./autogen.sh --prefix=/usr || return 1 - 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 |