wok-next annotate openerp-web/receipt @ rev 17764
epdf: hide false positive
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Mar 12 09:36:28 2015 +0100 (2015-03-12) |
parents | b7f5000cceb9 |
children | 16df76e1fc6a |
rev | line source |
---|---|
pankso@3380 | 1 # SliTaz package receipt. |
pankso@3380 | 2 |
pankso@3380 | 3 PACKAGE="openerp-web" |
pascal@6658 | 4 VERSION="5.0.14" |
pankso@3380 | 5 CATEGORY="office" |
pankso@3380 | 6 SHORT_DESC="Open source ERP web client." |
pankso@3380 | 7 MAINTAINER="pankso@slitaz.org" |
pascal@15601 | 8 LICENSE="MPL" |
pankso@3380 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pankso@3380 | 10 WEB_SITE="http://openerp.com/" |
pankso@3380 | 11 WGET_URL="$WEB_SITE/download/stable/source/$TARBALL" |
pascal@15601 | 12 CONFIG_FILES="/etc/openerp/openerp-web.conf" |
pascal@15601 | 13 # http://doc.openerp.com/install/linux/web/index.html |
pascal@15601 | 14 |
claudinei@3415 | 15 DEPENDS="matplotlib setuptools python-turbogears python-pil python \ |
pascal@9667 | 16 python-pyxml python-pyparsing python-babel python-mako python-markupsafe" |
claudinei@3414 | 17 BUILD_DEPENDS="setuptools python-dev python python-pyxml python-turbogears" |
pankso@3380 | 18 |
pankso@3380 | 19 # Rules to configure and make the package. |
pankso@3380 | 20 compile_rules() |
pankso@3380 | 21 { |
pankso@3380 | 22 cd $src |
pascal@15601 | 23 python setup.py install --root=$DESTDIR |
pankso@3380 | 24 } |
pankso@3380 | 25 |
pankso@3380 | 26 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@3380 | 27 genpkg_rules() |
pankso@3380 | 28 { |
pankso@3380 | 29 mkdir -p $fs/usr $fs/etc/openerp $fs/usr/share/applications |
pankso@3380 | 30 cp -a stuff/etc $fs/ |
pascal@15601 | 31 cp -a $install/usr/config/openerp-web.cfg $fs/etc/openerp/openerp-web.conf |
pascal@15601 | 32 cp -a $install/usr/bin $fs/usr |
pascal@15601 | 33 cp -a $install/usr/lib $fs/usr |
pankso@3380 | 34 } |
pankso@3380 | 35 |
pankso@3380 | 36 # Pre and post install commands for Tazpkg. |
pankso@3380 | 37 post_install() |
pankso@3380 | 38 { |
pankso@3380 | 39 #sed -i "s/^RUN_DAEMONS=\"/RUN_DAEMONS=\"openerp-web /" $1/etc/rcS.conf |
pankso@3380 | 40 [ -z "$1" ] && /etc/init.d/openerp-web start |
pankso@3380 | 41 cat <<EOF |
pankso@3380 | 42 ---- |
pankso@3380 | 43 To start $PACKAGE server you can run : |
pankso@3380 | 44 |
pankso@3380 | 45 /etc/init.d/openerp-web start |
pankso@3380 | 46 |
pankso@3380 | 47 Or add $PACKAGE to RUN_DAEMONS in /etc/rcS.conf |
pankso@3380 | 48 ---- |
pankso@3380 | 49 EOF |
pankso@3380 | 50 } |