summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Zesch <[email protected]>2012-05-29 12:20:44 -0400
committerSteve Zesch <[email protected]>2012-05-29 12:20:44 -0400
commit0a4385c777571efa9784dcdc3da67e030222d736 (patch)
tree61ef5da256a4e5058c106549bd373735daae4ccc
parent44ec5aed7c1c7130caee72d56cf3a234603ef0d0 (diff)
downloadlibmateweather-0a4385c777571efa9784dcdc3da67e030222d736.tar.bz2
libmateweather-0a4385c777571efa9784dcdc3da67e030222d736.tar.xz
Removed ubuntu folder from distro.
-rwxr-xr-xdistro/ubuntu/build36
-rwxr-xr-xdistro/ubuntu/postinst9
-rwxr-xr-xdistro/ubuntu/postrm6
-rwxr-xr-xdistro/ubuntu/preinst8
-rwxr-xr-xdistro/ubuntu/prerm11
5 files changed, 0 insertions, 70 deletions
diff --git a/distro/ubuntu/build b/distro/ubuntu/build
deleted file mode 100755
index b362c47..0000000
--- a/distro/ubuntu/build
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/bin/bash
-
-# fill it
-pkgname=libmateweather
-pkgver=1.1.0
-pkgrel=1
-pkgdesc="Provides access to weather information from the net"
-depends=('libsoup-dev')
-#"mate-conf, mate-icon-theme"
-# editar esta funcion!
-build() {
- cd $pkgsrc
- # descomprimir
- tar xvzf download
- # entramos a la carpeta
- cd ${pkgname}
-
- libtoolize --force || return 1
- gtkdocize || return 1
- aclocal || return 1
- autoconf || return 1
- automake || return 1
- ./configure --prefix=/usr --sysconfdir=/etc \
- --localstatedir=/var --disable-static \
- --enable-locations-compression || return 1
- make || return 1
-
- make MATECONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="${pkgdir}" install || return 1
-
- install -m755 -d "${pkgdir}/usr/share/mateconf/schemas"
- mateconf-merge-schema "${pkgdir}/usr/share/mateconf/schemas/${pkgname}.schemas" --domain libmateweather ${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
diff --git a/distro/ubuntu/postinst b/distro/ubuntu/postinst
deleted file mode 100755
index 5a3cded..0000000
--- a/distro/ubuntu/postinst
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/sh
-
-pkgname=libmateweather
-
-if [ -f /usr/sbin/mateconfpkg ]; then
- /usr/sbin/mateconfpkg --install ${pkgname}
-fi
-
-exit 0
diff --git a/distro/ubuntu/postrm b/distro/ubuntu/postrm
deleted file mode 100755
index 67039ba..0000000
--- a/distro/ubuntu/postrm
+++ /dev/null
@@ -1,6 +0,0 @@
-#!/bin/sh
-set -e
-
-pkgname=libmateweather
-
-exit 0
diff --git a/distro/ubuntu/preinst b/distro/ubuntu/preinst
deleted file mode 100755
index 90cfc2c..0000000
--- a/distro/ubuntu/preinst
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/sh -e
-
-pkgname=libmateweather
-
-if [ -f usr/share/mateconf/${pkgname}.schemas ]; then
- /usr/sbin/mateconfpkg --uninstall ${pkgname}
-fi
-
diff --git a/distro/ubuntu/prerm b/distro/ubuntu/prerm
deleted file mode 100755
index 45f86b7..0000000
--- a/distro/ubuntu/prerm
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/bash
-
-set -e
-
-pkgname=libmateweather
-
-if [ -f usr/share/mateconf/${pkgname}.schemas ]; then
- /usr/sbin/mateconfpkg --uninstall ${pkgname}
-fi
-
-exit 0