wok-next view openvswitch/receipt @ rev 20513

A lot of tiny edits; remove wget and pkg-build from $BUILD_DEPENDS and from *-dev packages $DEPENDS.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Mar 21 15:58:17 2018 +0200 (2018-03-21)
parents e6615350078d
children 757d032c55c7
line source
1 # SliTaz package receipt v2.
3 PACKAGE="openvswitch"
4 VERSION="2.4.0"
5 CATEGORY="network"
6 SHORT_DESC="Multilayer virtual switch"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="Apache"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://openvswitch.org/"
11 WGET_URL="${WEB_SITE}releases/$TARBALL"
13 BUILD_DEPENDS="openssl-dev zlib-dev perl"
14 SPLIT="openvswitch-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure --prefix=/usr \
20 --sysconfdir=/etc \
21 --localstatedir=/var \
22 --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 case $PACKAGE in
32 openvswitch)
33 DEPENDS="openssl zlib python bash"
34 mkdir -p $fs/usr
35 cp -a $install/etc $fs/
36 cp -a $install/var $fs/
37 cp -a $install/usr/bin $fs/usr/
38 cp -a $install/usr/sbin $fs/usr/
39 cp -a $install/usr/share $fs/usr/
40 ;;
41 openvswitch-dev)
42 mkdir -p $fs/usr
43 cp -a $install/usr/lib $fs/usr
44 cp -a $install/usr/include $fs/usr
45 ;;
46 esac
47 }