wok view cc65/receipt @ rev 21999

updated sysstat (12.1.1 -> 12.1.7)
author Hans-G?nter Theisgen
date Fri Oct 18 15:25:38 2019 +0100 (2019-10-18)
parents a511baf85854
children e3f8a8ae5911
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="https://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 mkdir -p $DESTDIR/usr
20 sed -i "s|/usr/local|/usr|" make/gcc.mak
21 make -j 1 -f make/gcc.mak
22 sed -i "s|/usr|$DESTDIR/usr|" make/gcc.mak
23 make -j 1 -f make/gcc.mak install
25 cook_pick_manpages packages/debian/*.1
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 cp -a $install/* $fs
32 }