wok view fasm/receipt @ rev 18092

slitaz-menus: add hr, is, ja, nl, nb, nn, fi and tr translations according to matchbox-common-0.9.1.tazpkg
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon May 25 22:35:22 2015 +0200 (2015-05-25)
parents 513a891ea9a5
children e65059c1e0d7
line source
1 # SliTaz package receipt.
3 PACKAGE="fasm"
4 VERSION="1.71.21"
5 CATEGORY="development"
6 SHORT_DESC="Assembly language programming for x86 and x86-64 systems."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="other"
9 TARBALL="$PACKAGE-$VERSION.tgz"
10 WEB_SITE="http://www.flatassembler.net/"
11 WGET_URL="$WEB_SITE$TARBALL"
13 DEPENDS=""
14 BUILD_DEPENDS=""
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 mkdir -p $DESTDIR/usr/bin
20 cd $src/source/Linux
21 ../../fasm fasm.asm $DESTDIR/usr/bin/fasm
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/share $fs/usr/bin
28 cp -a $install/usr/bin/fasm $fs/usr/share
29 ln -s ../share/fasm $fs/usr/bin
31 }