wok-next annotate gsim51/receipt @ rev 19988

Add qt5 - now it's look good enough
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Oct 20 03:29:40 2017 +0300 (2017-10-20)
parents fdc47644be0f
children e1c0edabdcb2
rev   line source
pascal@15827 1 # SliTaz package receipt.
pascal@15827 2
pascal@15827 3 PACKAGE="gsim51"
pascal@15827 4 VERSION="1.1"
pascal@15827 5 CATEGORY="development"
pascal@15827 6 SHORT_DESC="Text based simulator for the 8051 microcontroller."
pascal@15827 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15827 8 LICENSE="GPL2"
pascal@15827 9 SOURCE="gSim51"
pascal@15827 10 TARBALL="${SOURCE}v$VERSION.tar.gz"
pascal@15827 11 WEB_SITE="http://$PACKAGE.sourceforge.net/"
pascal@15827 12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pascal@18360 13 TAGS="8051"
pascal@15827 14
pascal@15827 15 DEPENDS="ncurses"
pascal@15830 16 BUILD_DEPENDS="ncurses-dev"
pascal@15827 17
pascal@15827 18 # Rules to configure and make the package.
pascal@15827 19 compile_rules()
pascal@15827 20 {
pascal@15827 21 cd $src/src
pascal@15827 22 make
pascal@15827 23 }
pascal@15827 24
pascal@15827 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@15827 26 genpkg_rules()
pascal@15827 27 {
pascal@15827 28 mkdir -p $fs/usr/bin $fs/usr/share/gsim51
pascal@15827 29 cp -a $src/src/gSim51 $fs/usr/bin
pascal@15827 30 cp -a $src/docs/offlinehelp.txt $fs/usr/share/gsim51/sim51.hlp
pascal@15827 31 }