wok annotate yasm/receipt @ rev 14714

lib[a-n]*: add LICENSE
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jun 11 10:41:23 2013 +0200 (2013-06-11)
parents b8454fb20cc5
children 78cb1e930abd
rev   line source
jozee@4536 1 # SliTaz package receipt.
jozee@4536 2
jozee@4536 3 PACKAGE="yasm"
slaxemulator@11873 4 VERSION="1.2.0"
jozee@4536 5 CATEGORY="development"
jozee@4536 6 MAINTAINER="jozee@slitaz.org"
jozee@4536 7 SHORT_DESC="A rewrite of NASM to allow for multiple syntax supported (NASM, TASM, GAS, etc.)"
jozee@4536 8 DEPENDS="glibc-base"
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"
jozee@4536 12
jozee@4536 13 # Rules to configure and make the package.
slaxemulator@11873 14 compile_rules()
slaxemulator@11873 15 {
slaxemulator@10054 16 cd $src
slaxemulator@10054 17 ./configure $CONFIGURE_ARGS &&
slaxemulator@10054 18 make &&
slaxemulator@10054 19 make install
jozee@4536 20 }
jozee@4536 21
jozee@4536 22 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@4536 23 genpkg_rules()
jozee@4536 24 {
jozee@4536 25 mkdir -p $fs/usr
jozee@4536 26 cp -a $_pkg/usr/bin $fs/usr
jozee@4536 27
jozee@4536 28 }