wok view sctp-tools/receipt @ rev 23848

inkscape: update build_depends
author Richard Dunbar <mojo@slitaz.org>
date Sun Jun 14 23:18:03 2020 -0400 (2020-06-14)
parents 8d6f480bf664
children e919c5a2742d
line source
1 # SliTaz package receipt.
3 PACKAGE="sctp-tools"
4 VERSION="1.0.17"
5 CATEGORY="network"
6 SHORT_DESC="Stream Control Transmission Protocol tools."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2 LGPL2.1"
9 WEB_SITE="http://lksctp.sourceforge.net/"
11 SOURCE="lksctp-tools"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WGET_URL="$SF_MIRROR/lksctp/$SOURCE/$TARBALL"
15 DEPENDS="libsctp"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ln -s $src $PACKAGE-$VERSION
21 cd $src
23 ./configure \
24 --prefix=/usr \
25 --infodir=/usr/share/info \
26 --mandir=/usr/share/man \
27 $CONFIGURE_ARGS &&
28 make -j 1 &&
29 make DESTDIR=$DESTDIR install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/lib/lksctp-tools
37 cp -a $install/usr/bin $fs/usr
38 cp -a $install/usr/lib/lksctp-tools/libwithsctp.so* \
39 $fs/usr/lib/lksctp-tools
40 }