wok annotate libidn/receipt @ rev 21860

busybox: add command_not_found
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Sep 23 15:30:05 2019 +0200 (2019-09-23)
parents fa583ef36fa9
children 5d79829fa876
rev   line source
pascal@2133 1 # SliTaz package receipt.
pascal@2133 2
pascal@2133 3 PACKAGE="libidn"
Hans-G?nter@21239 4 VERSION="1.35"
pascal@2133 5 CATEGORY="system-tools"
pascal@2133 6 SHORT_DESC="Encode and decode internationalized domain names."
pascal@2133 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15227 8 LICENSE="GPL3 LGPL2.1"
Hans-G?nter@21239 9 WEB_SITE="https://www.gnu.org/software/$PACKAGE/"
Hans-G?nter@21239 10
pascal@2133 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@2133 12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
Hans-G?nter@21239 13
pankso@15963 14 HOST_ARCH="i486 arm"
pascal@2133 15
pascal@2133 16 # Rules to configure and make the package.
pascal@2133 17 compile_rules()
pascal@2133 18 {
slaxemulator@10155 19 ./configure $CONFIGURE_ARGS &&
Hans-G?nter@21239 20 make $MAKEFLAGS -j 1 &&
pascal@15227 21 make install
pascal@2133 22 }
pascal@2133 23
pascal@2133 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@2133 25 genpkg_rules()
pascal@2133 26 {
pascal@2133 27 mkdir -p $fs/usr/lib
Hans-G?nter@21239 28
Hans-G?nter@21239 29 cp -a $install/usr/bin $fs/usr
Hans-G?nter@21239 30 cp -a $install/usr/lib/*.so* $fs/usr/lib
pascal@2133 31 }