wok view yasm/receipt @ rev 17790

Up: yasm 1.3.0
author Alexander Medvedev <devl547@gmail.com>
date Sat Mar 14 21:55:50 2015 +0000 (2015-03-14)
parents 61bec0518c8c
children 922f061231c2
line source
1 # SliTaz package receipt.
3 PACKAGE="yasm"
4 VERSION="1.3.0"
5 CATEGORY="development"
6 MAINTAINER="jozee@slitaz.org"
7 LICENSE="BSD GPL2 LGPL2"
8 SHORT_DESC="A rewrite of NASM with multiple syntax (NASM, TASM, GAS, etc.)"
9 WEB_SITE="http://www.tortall.net/projects/yasm/"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="$WEB_SITE/releases/$TARBALL"
12 HOST_ARCH="i486 arm"
14 DEPENDS=""
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure $CONFIGURE_ARGS &&
21 make &&
22 make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a $install/usr/bin $fs/usr
30 }