diff options
author | Perberos <[email protected]> | 2011-12-01 21:42:39 -0300 |
---|---|---|
committer | Perberos <[email protected]> | 2011-12-01 21:42:39 -0300 |
commit | fe8aea1c3b5348347633da18a02b0bffd3b266a1 (patch) | |
tree | 9881bf77df7572844707cc7c50bd8ca6b5a97076 /distro | |
download | libmateweather-fe8aea1c3b5348347633da18a02b0bffd3b266a1.tar.bz2 libmateweather-fe8aea1c3b5348347633da18a02b0bffd3b266a1.tar.xz |
moving from https://github.com/perberos/mate-desktop-environment
Diffstat (limited to 'distro')
-rw-r--r-- | distro/archlinux/PKGBUILD | 35 | ||||
-rw-r--r-- | distro/archlinux/libmateweather.install | 19 | ||||
-rwxr-xr-x | distro/ubuntu/build | 36 | ||||
-rwxr-xr-x | distro/ubuntu/postinst | 9 | ||||
-rwxr-xr-x | distro/ubuntu/postrm | 6 | ||||
-rwxr-xr-x | distro/ubuntu/preinst | 8 | ||||
-rwxr-xr-x | distro/ubuntu/prerm | 11 |
7 files changed, 124 insertions, 0 deletions
diff --git a/distro/archlinux/PKGBUILD b/distro/archlinux/PKGBUILD new file mode 100644 index 0000000..46a348d --- /dev/null +++ b/distro/archlinux/PKGBUILD @@ -0,0 +1,35 @@ +pkgname=libmateweather +pkgver=2011.11.16 +pkgrel=1 +pkgdesc="Provides access to weather information from the net" +arch=('i686' 'x86_64') +license=('LGPL') +depends=('mate-conf') # 'libsoup-mate' 'mate-icon-theme' +makedepends=('pkgconfig' 'intltool' 'gtk-doc') +groups=('mate') +options=('!emptydirs' '!libtool') +url="http://www.gnome.org/" +install=libmateweather.install +source=(http://sourceforge.net/projects/matede/files/${pkgver}/${pkgname}.tar.gz/download) +sha256sums=('9fc3d72c84a513486c292a4ca3a83785152be750581720bbf33ff4503cb29a36') + +build() { + cd "${srcdir}/${pkgname}" + ./autogen.sh \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --disable-static \ + --enable-locations-compression || return 1 + make || return 1 +} + +package() { + cd "${srcdir}/${pkgname}" + + 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 +} diff --git a/distro/archlinux/libmateweather.install b/distro/archlinux/libmateweather.install new file mode 100644 index 0000000..2ce4d50 --- /dev/null +++ b/distro/archlinux/libmateweather.install @@ -0,0 +1,19 @@ +pkgname=libmateweather + +post_install() { + usr/sbin/mateconfpkg --install ${pkgname} +} + +pre_upgrade() { + pre_remove $1 +} + +post_upgrade() { + post_install $1 +} + +pre_remove() { + if [ -f usr/share/mateconf/${pkgname}.schemas ]; then + usr/sbin/mateconfpkg --uninstall ${pkgname} + fi +} diff --git a/distro/ubuntu/build b/distro/ubuntu/build new file mode 100755 index 0000000..64b1309 --- /dev/null +++ b/distro/ubuntu/build @@ -0,0 +1,36 @@ +#!/bin/bash + +# fill it +pkgname=libmateweather +pkgver=2011.10.29 +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 new file mode 100755 index 0000000..5a3cded --- /dev/null +++ b/distro/ubuntu/postinst @@ -0,0 +1,9 @@ +#!/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 new file mode 100755 index 0000000..67039ba --- /dev/null +++ b/distro/ubuntu/postrm @@ -0,0 +1,6 @@ +#!/bin/sh +set -e + +pkgname=libmateweather + +exit 0 diff --git a/distro/ubuntu/preinst b/distro/ubuntu/preinst new file mode 100755 index 0000000..90cfc2c --- /dev/null +++ b/distro/ubuntu/preinst @@ -0,0 +1,8 @@ +#!/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 new file mode 100755 index 0000000..45f86b7 --- /dev/null +++ b/distro/ubuntu/prerm @@ -0,0 +1,11 @@ +#!/bin/bash + +set -e + +pkgname=libmateweather + +if [ -f usr/share/mateconf/${pkgname}.schemas ]; then + /usr/sbin/mateconfpkg --uninstall ${pkgname} +fi + +exit 0 |