wok view cc65/receipt @ rev 18834

Add megatools (again)
author Lucas Levrel <llevrel@yahoo.fr>
date Mon Jan 18 22:23:53 2016 +0100 (2016-01-18)
parents 773fc7517d59
children a511baf85854
line source
1 # SliTaz package receipt.
3 PACKAGE="cc65"
4 VERSION="2.13.3"
5 CATEGORY="development"
6 SHORT_DESC="Cross development package for 65(C)02 systems."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="other"
9 WEB_SITE="http://www.cc65.org"
10 TARBALL="$PACKAGE-sources-$VERSION.tar.bz2"
11 WGET_URL="ftp://ftp.musoftware.de/pub/uz/$PACKAGE/$TARBALL"
13 DEPENDS=""
14 BUILD_DEPENDS=""
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 mkdir -p $DESTDIR/usr
21 sed -i "s|/usr/local|/usr|" make/gcc.mak
22 make -j 1 -f make/gcc.mak
23 sed -i "s|/usr|$DESTDIR/usr|" make/gcc.mak
24 make -j 1 -f make/gcc.mak install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 cp -a $install/* $fs
31 }