wok view gsim51/receipt @ rev 16417

ARM: add libbsd and fix libnl *.a
author Christophe Lincoln <pankso@slitaz.org>
date Thu Apr 17 14:30:15 2014 +0200 (2014-04-17)
parents 01560df26bda
children 17e313b5b9c1
line source
1 # SliTaz package receipt.
3 PACKAGE="gsim51"
4 VERSION="1.1"
5 CATEGORY="development"
6 SHORT_DESC="Text based simulator for the 8051 microcontroller."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 SOURCE="gSim51"
10 TARBALL="${SOURCE}v$VERSION.tar.gz"
11 WEB_SITE="http://$PACKAGE.sourceforge.net/"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 DEPENDS="ncurses"
15 BUILD_DEPENDS="ncurses-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src/src
21 make
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/bin $fs/usr/share/gsim51
28 cp -a $src/src/gSim51 $fs/usr/bin
29 cp -a $src/docs/offlinehelp.txt $fs/usr/share/gsim51/sim51.hlp
30 }