wok annotate yasm/receipt @ rev 16015

glib: fix cross compilation to ARM :-)
author Christophe Lincoln <pankso@slitaz.org>
date Wed Mar 05 03:32:36 2014 +0100 (2014-03-05)
parents cb660f628a78
children 61bec0518c8c
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"
pascal@15198 7 LICENSE="BSD GPL2 LGPL2"
jozee@4536 8 SHORT_DESC="A rewrite of NASM to allow for multiple syntax supported (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"
jozee@4536 12
pascal@15198 13 DEPENDS="glibc-base"
pascal@15198 14
jozee@4536 15 # Rules to configure and make the package.
slaxemulator@11873 16 compile_rules()
slaxemulator@11873 17 {
slaxemulator@10054 18 cd $src
slaxemulator@10054 19 ./configure $CONFIGURE_ARGS &&
slaxemulator@10054 20 make &&
slaxemulator@10054 21 make install
jozee@4536 22 }
jozee@4536 23
jozee@4536 24 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@4536 25 genpkg_rules()
jozee@4536 26 {
jozee@4536 27 mkdir -p $fs/usr
pascal@15198 28 cp -a $install/usr/bin $fs/usr
jozee@4536 29 }