wok view ocsinventory-agent/receipt @ rev 20235

busybox: add arch (uname -m alias)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 05 15:52:59 2018 +0100 (2018-03-05)
parents 9e01bc6321ea
children c265f9cf4b14
line source
1 # SliTaz package receipt.
3 PACKAGE="ocsinventory-agent"
4 VERSION="2.0.4"
5 CATEGORY="network"
6 SHORT_DESC="OCS Inventory NG agent for Linux."
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2"
9 SOURCE="Ocsinventory-Unix-Agent"
10 TARBALL="$SOURCE-$VERSION.tar.gz"
11 SUGGESTED="nmap perl-net-ssleay"
12 WEB_SITE="http://www.ocsinventory-ng.org/"
13 WGET_URL="https://launchpad.net/ocsinventory-unix-agent/stable-${VERSION%.*}/$VERSION/+download/$TARBALL"
15 DEPENDS="perl perl-libwww perl-uri dmidecode"
16 BUILD_DEPENDS="perl wget"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cp $stuff/Slitaz.pm $src/lib/Ocsinventory/Agent/Backend/OS/Linux/Distro/NonLSB
22 cp $stuff/Tazpkg.pm $src/lib/Ocsinventory/Agent/Backend/OS/Generic/Packaging
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=$DESTDIR 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 $install/usr/bin $fs/usr
45 cp -a $install/usr/lib $fs/usr
46 }
48 post_install(){
49 cat > "$1/etc/ocsinventory-agent/ocsinventory-agent.cfg" <<EOT
50 basevardir=/var/lib/ocsinventory-agent
51 server=http://localhost/ocsinventory
52 EOT
53 # We need fix missing status for dpkg
54 # So we can Ocs agent can run Tazpkg.pm
55 if [ ! -d "$1/var/lib/dpkg" ]; then
56 install -o root -g root -m 0755 -d "$1/var/lib/dpkg"
57 touch "$1/var/lib/dpkg/status"
58 fi
59 }