wok annotate libestr/receipt @ rev 23996

linld: add iso support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Jan 08 20:15:35 2021 +0000 (2021-01-08)
parents 364099c9aff2
children ede1d184d5c5
rev   line source
erjo@11415 1 # SliTaz package receipt.
erjo@11415 2
erjo@11415 3 PACKAGE="libestr"
Hans-G?nter@21173 4 VERSION="0.1.11"
erjo@11415 5 CATEGORY="system-tools"
Hans-G?nter@21173 6 SHORT_DESC="Some essentials for string handling."
erjo@11415 7 MAINTAINER="erjo@slitaz.org"
pascal@15472 8 LICENSE="LGPL2"
pascal@21145 9 WEB_SITE="https://libestr.adiscon.com/"
Hans-G?nter@21173 10
erjo@11415 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
erjo@11415 12 WGET_URL="http://libestr.adiscon.com/files/download/$TARBALL"
erjo@11415 13
erjo@11415 14 # Rules to configure and make the package.
erjo@11415 15 compile_rules()
erjo@11415 16 {
Hans-G?nter@21173 17 ./configure $CONFIGURE_ARGS &&
Hans-G?nter@21173 18 make -j 1 &&
Hans-G?nter@21173 19 make install
erjo@11415 20 }
erjo@11415 21
erjo@11415 22 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@11415 23 genpkg_rules()
erjo@11415 24 {
erjo@11415 25 mkdir -p $fs/usr/lib
erjo@11415 26 cp -a $install/usr/lib/*.so* $fs/usr/lib
erjo@11415 27 }