wok 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 21a4d655af02
children 8d9bed32e857
files libnsl-dev/receipt libnsl/description.txt libnsl/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/libnsl-dev/receipt	Wed Mar 23 07:31:51 2022 +0100
     1.3 @@ -0,0 +1,23 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="libnsl-dev"
     1.7 +VERSION="2.0.0"
     1.8 +CATEGORY="development"
     1.9 +SHORT_DESC="Public client interface library for NIS(YP) and NIS+ - development files."
    1.10 +MAINTAINER="maintainer@slitaz.org"
    1.11 +LICENSE="LGPL2+"
    1.12 +WEB_SITE="https://www.thkukuk.de/nis/"
    1.13 +
    1.14 +DEPENDS="libnsl"
    1.15 +WANTED="libnsl"
    1.16 +
    1.17 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.18 +genpkg_rules()
    1.19 +{
    1.20 +#	mkdir -p $fs/usr/lib/pkgconfig
    1.21 +
    1.22 +#	cp -a $install/usr/include		$fs/usr
    1.23 +#	cp -a $install/usr/lib/*.*a		$fs/usr/lib
    1.24 +#	cp -a $install/usr/lib/pkgconfig	$fs/usr/lib
    1.25 +	get_dev_files
    1.26 +}
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/libnsl/description.txt	Wed Mar 23 07:31:51 2022 +0100
     2.3 @@ -0,0 +1,4 @@
     2.4 +This library contains the public client interface for NIS(YP).
     2.5 +
     2.6 +This code was formerly part of glibc, but is now standalone to
     2.7 +be able to link against TI-RPC for IPv6 support.
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/libnsl/receipt	Wed Mar 23 07:31:51 2022 +0100
     3.3 @@ -0,0 +1,28 @@
     3.4 +# SliTaz package receipt.
     3.5 +
     3.6 +PACKAGE="libnsl"
     3.7 +VERSION="2.0.0"
     3.8 +CATEGORY="development"
     3.9 +SHORT_DESC="Public client interface library for NIS(YP) and NIS+."
    3.10 +MAINTAINER="maintainer@slitaz.org"
    3.11 +LICENSE="LGPL2+"
    3.12 +WEB_SITE="https://www.thkukuk.de/nis/"
    3.13 +
    3.14 +TARBALL="$PACKAGE-$VERSION.tar.xz"
    3.15 +WGET_URL="https://github.com/thkukuk/$PACKAGE/releases/download/v$VERSION/$TARBALL"
    3.16 +
    3.17 +# Rules to configure and make the package.
    3.18 +compile_rules()
    3.19 +{
    3.20 +	./configure		\
    3.21 +		--prefix=/usr	\
    3.22 +		$CONFIG_ARGS
    3.23 +	make &&
    3.24 +	make install
    3.25 +}
    3.26 +
    3.27 +# Rules to gen a SliTaz package suitable for Tazpkg.
    3.28 +genpkg_rules()
    3.29 +{
    3.30 +	cook_copy_files	*.so*
    3.31 +}