wok annotate yasm/receipt @ rev 23079

updated liblinebreak and liblinebreak-dev (2.0 -> 2.1)
author Hans-G?nter Theisgen
date Tue Mar 10 16:26:23 2020 +0100 (2020-03-10)
parents 61bec0518c8c
children 922f061231c2
rev   line source
jozee@4536 1 # SliTaz package receipt.
jozee@4536 2
jozee@4536 3 PACKAGE="yasm"
devl547@17790 4 VERSION="1.3.0"
jozee@4536 5 CATEGORY="development"
jozee@4536 6 MAINTAINER="jozee@slitaz.org"
pascal@15198 7 LICENSE="BSD GPL2 LGPL2"
pankso@16026 8 SHORT_DESC="A rewrite of NASM with multiple syntax (NASM, TASM, GAS, etc.)"
jozee@4536 9 WEB_SITE="http://www.tortall.net/projects/yasm/"
jozee@4536 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
jozee@4536 11 WGET_URL="$WEB_SITE/releases/$TARBALL"
pankso@16026 12 HOST_ARCH="i486 arm"
jozee@4536 13
pankso@16026 14 DEPENDS=""
pascal@15198 15
jozee@4536 16 # Rules to configure and make the package.
slaxemulator@11873 17 compile_rules()
slaxemulator@11873 18 {
slaxemulator@10054 19 cd $src
slaxemulator@10054 20 ./configure $CONFIGURE_ARGS &&
slaxemulator@10054 21 make &&
slaxemulator@10054 22 make install
jozee@4536 23 }
jozee@4536 24
jozee@4536 25 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@4536 26 genpkg_rules()
jozee@4536 27 {
jozee@4536 28 mkdir -p $fs/usr
pascal@15198 29 cp -a $install/usr/bin $fs/usr
jozee@4536 30 }