wok view fasm/receipt @ rev 17501

Normalize tags "file-manager", "web-browser", "text-editor", "terminal", and "window-manager" according to tazx.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Jan 08 02:04:05 2015 +0200 (2015-01-08)
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 }