wok view libbsd/receipt @ rev 20669

Update some WEB_SITE
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jan 21 12:26:11 2019 +0100 (2019-01-21)
parents 093afdf01585
children 71521ac1d60d
line source
1 # SliTaz package receipt.
3 PACKAGE="libbsd"
4 VERSION="0.6.0"
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/"
10 TARBALL="$PACKAGE-$VERSION.tar.xz"
11 WGET_URL="https://libbsd.freedesktop.org/releases/$TARBALL"
12 HOST_ARCH="i486 arm"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 ./configure $CONFIGURE_ARGS && make && make install
18 }
20 # Rules to gen a SliTaz package suitable for Tazpkg.
21 genpkg_rules()
22 {
23 mkdir -p $fs/usr/lib
24 cp -a $install/usr/lib/*.so* $fs/usr/lib
25 }