wok-6.x annotate yasm/receipt @ rev 15198
php*: add license
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Sep 07 15:59:12 2013 +0000 (2013-09-07) |
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 } |