wok-next view openvswitch/receipt @ rev 20443

The rest of my "home work" for update many packages (up to Xorg, GTK and Openbox) for Next and mainly for Next64. Since this point this repository is open for commits. Many errors are expected due to harfbuzz-freetype dependency loop...
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Feb 24 16:17:33 2018 +0200 (2018-02-24)
parents fd7465c3bdde
children e6615350078d
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="libssl 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 CAT="development|development files"
43 DEPENDS="pkg-config openvswitch"
44 mkdir -p $fs/usr
45 cp -a $install/usr/lib $fs/usr
46 cp -a $install/usr/include $fs/usr
47 ;;
48 esac
49 }