wok-4.x view openerp-web/receipt @ rev 6928
Up: elfutils to 0.149. Fixed it to build in clean chroot. Fixed it also to download sources with real wget by since sources are on https host. So now elfutils can download its sources just fine.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Fri Oct 22 22:36:22 2010 +0000 (2010-10-22) |
parents | aa7d170708a9 |
children | 6d78034653dc |
line source
1 # SliTaz package receipt.
3 PACKAGE="openerp-web"
4 VERSION="5.0.14"
5 CATEGORY="office"
6 SHORT_DESC="Open source ERP web client."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://openerp.com/"
10 WGET_URL="$WEB_SITE/download/stable/source/$TARBALL"
11 DEPENDS="matplotlib setuptools python-turbogears python-pil python \
12 python-pyxml python-pyparsing"
13 BUILD_DEPENDS="setuptools python-dev python python-pyxml python-turbogears"
14 CONFIG_FILES="/etc/openerp/openerp-web.conf"
15 # http://doc.openerp.com/install/linux/web/index.html
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 python setup.py install --root=$PWD/_pkg
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr $fs/etc/openerp $fs/usr/share/applications
28 cp -a stuff/etc $fs/
29 cp -a $_pkg/usr/config/default.cfg $fs/etc/openerp/openerp-web.conf
30 cp -a $_pkg/usr/bin $fs/usr
31 cp -a $_pkg/usr/lib $fs/usr
32 }
34 # Pre and post install commands for Tazpkg.
35 post_install()
36 {
37 #sed -i "s/^RUN_DAEMONS=\"/RUN_DAEMONS=\"openerp-web /" $1/etc/rcS.conf
38 [ -z "$1" ] && /etc/init.d/openerp-web start
39 cat <<EOF
40 ----
41 To start $PACKAGE server you can run :
43 /etc/init.d/openerp-web start
45 Or add $PACKAGE to RUN_DAEMONS in /etc/rcS.conf
46 ----
47 EOF
48 }