summaryrefslogtreecommitdiff
path: root/distro/ubuntu/build
diff options
context:
space:
mode:
Diffstat (limited to 'distro/ubuntu/build')
-rwxr-xr-xdistro/ubuntu/build24
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