wok annotate make/receipt @ rev 23837

Up freetype (2.10.2), git (2.26.2), glpi (9.4.6)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jun 01 10:44:24 2020 +0000 (2020-06-01)
parents 6f69af373b8d
children 71360a13cd94
rev   line source
pankso@9 1 # SliTaz package receipt.
pankso@9 2
pankso@9 3 PACKAGE="make"
Hans-G?nter@23162 4 VERSION="4.3"
pankso@204 5 CATEGORY="development"
pankso@9 6 SHORT_DESC="GNU Make to generate executables and other files from source."
pankso@9 7 MAINTAINER="pankso@slitaz.org"
pascal@14999 8 LICENSE="GPL3"
Hans-G?nter@21414 9 WEB_SITE="https://www.gnu.org/software/make/"
Hans-G?nter@21414 10
pankso@9 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@9 12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
pankso@9 13
pankso@9660 14 DEPENDS="glibc-base"
pankso@12855 15 BUILD_DEPENDS=""
slaxemulator@10414 16
Hans-G?nter@21414 17 HOST_ARCH="i486 arm x86_64"
Hans-G?nter@21414 18
pankso@9 19 # Rules to configure and make the package.
pankso@9 20 compile_rules()
pankso@9 21 {
pankso@10044 22 ./configure $CONFIGURE_ARGS &&
Hans-G?nter@21414 23 make -j 1 &&
Hans-G?nter@21414 24 make install
pankso@9 25 }
pankso@9 26
pankso@9 27 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@9 28 genpkg_rules()
pankso@9 29 {
pankso@9659 30 mkdir -p $fs/usr
Hans-G?nter@23162 31 cp -a $install/usr/bin $fs/usr
pankso@9 32 }