wok view libnsl/receipt @ rev 24817

created recipes for libnsl and libnsl-dev
author Hans-G?nter Theisgen
date Wed Mar 23 07:31:51 2022 +0100 (2022-03-23)
parents
children 6921af00a0cc
line source
1 # SliTaz package receipt.
3 PACKAGE="libnsl"
4 VERSION="2.0.0"
5 CATEGORY="development"
6 SHORT_DESC="Public client interface library for NIS(YP) and NIS+."
7 MAINTAINER="maintainer@slitaz.org"
8 LICENSE="LGPL2+"
9 WEB_SITE="https://www.thkukuk.de/nis/"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="https://github.com/thkukuk/$PACKAGE/releases/download/v$VERSION/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 ./configure \
18 --prefix=/usr \
19 $CONFIG_ARGS
20 make &&
21 make install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 cook_copy_files *.so*
28 }