wok view libbsd/receipt @ rev 21777

linld: fix strdup (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jul 11 14:43:21 2019 +0200 (2019-07-11)
parents a78610b2eb47
children 30054e3f93e9
line source
1 # SliTaz package receipt.
3 PACKAGE="libbsd"
4 VERSION="0.9.1"
5 CATEGORY="development"
6 SHORT_DESC="Provides useful functions commonly found on BSD systems."
7 MAINTAINER="claudinei@slitaz.org"
8 LICENSE="BSD MIT"
9 WEB_SITE="https://libbsd.freedesktop.org/wiki/"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="https://libbsd.freedesktop.org/releases/$TARBALL"
14 HOST_ARCH="i486 arm"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure $CONFIGURE_ARGS &&
20 make -j 1 &&
21 make install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $install/usr/lib/*.so* $fs/usr/lib
29 }