wok view ocsinventory-agent/receipt @ rev 9281

Add some perl modules for backuppc
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Mar 16 09:12:53 2011 +0100 (2011-03-16)
parents 0b4cf0d9e1b5
children fe7e875f7d99
line source
1 # SliTaz package receipt.
3 PACKAGE="ocsinventory-agent"
4 VERSION="1.1.2.1"
5 CATEGORY="network"
6 SHORT_DESC="OCS Inventory NG agent for Linux."
7 MAINTAINER="erjo@slitaz.org"
8 SOURCE="Ocsinventory-Agent"
9 TARBALL="$SOURCE-$VERSION.tar.gz"
10 DEPENDS="perl perl-lwp-useragent perl-uri dmidecode"
11 SUGGESTED="nmap perl-net-ssleay"
12 BUILD_DEPENDS="perl"
13 WEB_SITE="http://www.ocsinventory-ng.org/"
14 WGET_URL="http://launchpad.net/ocsinventory-unix-agent/stable-1.1.2/ocsinventory-unix-agent-1.1.2.1/+download/$TARBALL"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cp $stuff/Slitaz.pm $src/lib/Ocsinventory/Agent/Backend/OS/Linux/Distro/NonLSB
20 cp $stuff/Tazpkg.pm $src/lib/Ocsinventory/Agent/Backend/OS/Generic/Packaging
22 cd $src
24 # don't run postinstall script
25 rm -f run-postinst
26 for p in $stuff/ocsinventory-agent-1.1.2.1.u
27 do
28 [ -f done.$(basename $p) ] && continue
29 patch -p1 -i $p || return 1
30 touch done.$(basename $p)
31 done
32 perl Makefile.PL
33 rm -f run-postinst
34 make && make DESTDIR=$PWD/_pkg install
35 }
37 # Rules to gen a SliTaz package suitable for Tazpkg.
38 genpkg_rules()
39 {
40 mkdir -p $fs/usr \
41 $fs/etc/ocsinventory-agent \
42 $fs/var/lib/ocsinventory-agent
44 cp -a $_pkg/usr/bin $fs/usr
45 cp -a $_pkg/usr/lib $fs/usr
46 }
48 post_install(){
49 echo "Processing post-install commands..."
50 cat > $1/etc/ocsinventory-agent/ocsinventory-agent.cfg <<EOT
51 basevardir=/var/lib/ocsinventory-agent
52 server=http://$(hostname)/ocsinventory
53 EOT
54 # We need fix missing status for dpkg
55 # So we can Ocs agent can run Tazpkg.pm
56 if [ ! -d $1/var/lib/dpkg ]; then
57 install -o root -g root -m 0755 -d $1/var/lib/dpkg
58 touch $1/var/lib/dpkg/status
59 fi
60 }