wok view yasm/receipt @ rev 10615

ncmpc: fix WGET_URL
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu May 26 18:12:16 2011 +0200 (2011-05-26)
parents fca1cf108f36
children cb660f628a78
line source
1 # SliTaz package receipt.
3 PACKAGE="yasm"
4 VERSION="1.1.0"
5 CATEGORY="development"
6 MAINTAINER="jozee@slitaz.org"
7 SHORT_DESC="A rewrite of NASM to allow for multiple syntax supported (NASM, TASM, GAS, etc.)"
8 DEPENDS="glibc-base"
9 WEB_SITE="http://www.tortall.net/projects/yasm/"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="$WEB_SITE/releases/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules() {
15 cd $src
16 ./configure $CONFIGURE_ARGS &&
17 make &&
18 make install
19 }
21 # Rules to gen a SliTaz package suitable for Tazpkg.
22 genpkg_rules()
23 {
24 mkdir -p $fs/usr
25 cp -a $_pkg/usr/bin $fs/usr
27 }