Commit cdc34aa7 by nehomar barragan

se suben los fuentes del proyecto original

parent 211a2092
Autor:
* Nehomar Barragán <bnehomar@gmail.com>
Derechos de autor:
Copyright (C) 2013 Nehomar Barragán
Licencia:
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This package is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
This diff is collapsed. Click to expand it.
# Makefile
SHELL := sh -e
all: test build
test:
@echo "Nada para probar!"
build:
@echo "Nada para compilar!"
install:
@echo "Nada para instalar!"
uninstall:
@echo "Nada para desinstalar!"
clean:
distclean:
reinstall: uninstall install
canaima-edu (1.0+0) unstable; urgency=low
* Versión inicial de canaima-edu para Canaima GNU/Linux
-- Nehomar Barragán <bnehomar@gmail.com> Wed, 10 Jul 2013 16:00:21 -0430
Source: canaima-edu
Section: unknown
Priority: extra
Maintainer: Nehomar Barragan <bnehomar@gmail.com>
Uploaders: Nehomar Barragan <bnehomar@gmail.com>
Build-Depends: cdbs, debhelper (>= 7.0.50~)
Standards-Version: 3.9.1
Homepage: http://canaimaeducativo.gob.ve/
Vcs-Git: git://gitorious.org/canaima-educativo/canaima-edu.git
Vcs-Browser: http://gitorious.org/canaima-educativo/canaima-edu/trees/master
Package: canaima-edu
Architecture: all
Depends: desktop-base (>= 7.0.3educativo5),
canaima-base (>= 4.0.1-1educativo2),
burg-themes (>= 2.0.2-1educativo4),
gnome-icon-theme-gnamon (>= 1.0+3educativo1),
marble,
vlc,
gimp,
stellarium,
gchempaint,
glchess,
gnome-sudoku,
gnibbles,
quadrapassel,
xmahjongg,
gbrainy,
drgeo,
drgeo-doc,
geogebra,
gelemental,
palapeli,
prometeo-abc,
${shlibs:Depends},
${misc:Depends}
Description: Metapaquete que instala el entorno de Canaima Educativo.
Insertar descripción larga, iniciando con un espacio.
Derechos de autor:
Copyright (C) 2013 Nehomar Barragán
Licencia:
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This package is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
#!/bin/bash -e
#
# ==============================================================================
# PAQUETE: canaima-edu
# ARCHIVO: postinst
# DESCRIPCIÓN: Configura el sistema despues la instalación del paquete.
# COPYRIGHT:
# (C) 2013 Nehomar Barragán <bnehomar@gmail.com>
# LICENCIA: GPL3
# ==============================================================================
#
# Este programa es software libre. Puede redistribuirlo y/o modificarlo bajo los
# términos de la Licencia Pública General de GNU (versión 3).
PKG="canaima-edu"
case ${1} in
configure)
;;
abort-upgrade|abort-remove|abort-deconfigure)
;;
*)
echo "postinst no reconoce el argumento '"${1}"'" >&2
exit 1
;;
esac
#DEBHELPER#
exit 0
#!/bin/bash -e
#
# ==============================================================================
# PAQUETE: canaima-edu
# ARCHIVO: postrm
# DESCRIPCIÓN: Revierte los cambios hechos por el paquete en los scripts del
# mantenedor, de forma tal de asegurarse que el sistema quede
# como estaba antes de su instalación.
# COPYRIGHT:
# (C) 2013 Nehomar Barragán <bnehomar@gmail.com>
# LICENCIA: GPL3
# ==============================================================================
#
# Este programa es software libre. Puede redistribuirlo y/o modificarlo bajo los
# términos de la Licencia Pública General de GNU (versión 3).
case ${1} in
purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
;;
*)
echo "postrm no reconoce el argumento '"${1}"'" >&2
exit 1
;;
esac
#DEBHELPER#
exit 0
#!/bin/bash -e
#
# ==============================================================================
# PAQUETE: canaima-edu
# ARCHIVO: preinst
# DESCRIPCIÓN: Configura el sistema antes de la instalación del paquete.
# COPYRIGHT:
# (C) 2013 Nehomar Barragán <bnehomar@gmail.com>
# LICENCIA: GPL3
# ==============================================================================
#
# Este programa es software libre. Puede redistribuirlo y/o modificarlo bajo los
# términos de la Licencia Pública General de GNU (versión 3).
PKG="canaima-edu"
case ${1} in
install|upgrade)
wget http://repositorio.canaimaeducativo.gob.ve/pool/usuarios/c/canaima-base/canaima-base_4.0.1-1educativo2_all.deb
dpkg -i canaima-base_4.0.1-1educativo2_all.deb
rm canaima-base_4.0.1-1educativo2_all.deb
aptitude update
;;
abort-upgrade)
;;
*)
echo "preinst no reconoce el argumento '"${1}"'" >&2
exit 1
;;
esac
#DEBHELPER#
exit 0
#!/bin/bash -e
#
# ==============================================================================
# PAQUETE: canaima-edu
# ARCHIVO: prerm
# DESCRIPCIÓN: Prepara el sistema para que el paquete sea removido.
# COPYRIGHT:
# (C) 2013 Nehomar Barragán <bnehomar@gmail.com>
# LICENCIA: GPL3
# ==============================================================================
#
# Este programa es software libre. Puede redistribuirlo y/o modificarlo bajo los
# términos de la Licencia Pública General de GNU (versión 3).
PKG="canaima-edu"
case ${1} in
remove|upgrade|deconfigure)
;;
failed-upgrade)
;;
*)
echo "prerm no reconoce el argumento '"${1}"'" >&2
exit 1
;;
esac
#DEBHELPER#
exit 0
#!/usr/bin/make -f
# debian/rules
# Este archivo es utilizado por el mantenedor del paquete para convertir
# el software distribuído por el desarrollador en un paquete instalable
# dentro de un sistema basado en Debian como Canaima.
# La idea general es, construir la estructura de archivos que va a ir
# dentro del paquete a partir de éstas instrucciones y guardarlo dentro
# de la carpeta debian del paquete.
# Éstas siguientes dos líneas permiten que los ayudantes de debhelper
# hagan su trabajo al invocarlos con aplicaciones constructoras como
# dpkg-buildpackage, git-buildpackage, svn-buildpackage o debuild.
# Los diferentes ayudantes de debhelper realizan operaciones automáticas
# que nos permiten simplificar las instrucciones que deben colocarse en
# debian/rules.
%:
dh ${@}
# El target "override_dh_auto_install" permite sustituir el proceso de
# instalación por defecto que utilizan los ayudantes debhelper, por lo que
# se le instruya dentro de él. Es recomendable reutilizar el Makefile del
# desarrollador para ésta labor. Nótese la utilidad de definir $(DESTDIR)
# en el Makefile: al ser reutilizado en debian/rules, ésta variable adquiere
# el valor necesario para instalarse dentro de la carpeta debian, lugar
# donde finalmente se hace el paquete.
override_dh_auto_install:
$(MAKE) DESTDIR=$(CURDIR)/debian/canaima-edu install
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment