wok annotate fasm/receipt @ rev 16329

ARM: add xorg-xprop - Used in the new SliTaz Tiny/Touch Screen (sts) desktop
author Christophe Lincoln <pankso@slitaz.org>
date Thu Apr 10 19:50:37 2014 +0200 (2014-04-10)
parents 8229cecb010b
children 79ec85521a08
rev   line source
pascal@16158 1 # SliTaz package receipt.
pascal@16158 2
pascal@16158 3 PACKAGE="fasm"
pascal@16158 4 VERSION="1.71.17"
pascal@16158 5 CATEGORY="development"
pascal@16158 6 SHORT_DESC="Assembly language programming for x86 and x86-64 systems."
pascal@16158 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@16158 8 LICENSE="other"
pascal@16158 9 TARBALL="$PACKAGE-$VERSION.tgz"
pascal@16158 10 WEB_SITE="http://www.flatassembler.net/"
pascal@16158 11 WGET_URL="$WEB_SITE$TARBALL"
pascal@16158 12
pascal@16158 13 DEPENDS=""
pascal@16158 14 BUILD_DEPENDS=""
pascal@16158 15
pascal@16158 16 # Rules to configure and make the package.
pascal@16158 17 compile_rules()
pascal@16158 18 {
pascal@16158 19 mkdir -p $DESTDIR/usr/bin
pascal@16158 20 cd $src/source/Linux
pascal@16158 21 ../../fasm fasm.asm $DESTDIR/usr/bin/fasm
pascal@16158 22 }
pascal@16158 23
pascal@16158 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@16158 25 genpkg_rules()
pascal@16158 26 {
pascal@16159 27 mkdir -p $fs/usr/share $fs/usr/bin
pascal@16159 28 cp -a $install/usr/bin/fasm $fs/usr/share
pascal@16159 29 ln -s ../share/fasm $fs/usr/bin
pascal@16159 30
pascal@16158 31 }