wok view cc65/receipt @ rev 20381

Down xorg-serveur (1.12.4), needs mesa 9.2+
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Jun 15 16:21:37 2018 +0200 (2018-06-15)
parents 48d3d669a814
children 6e8b1bcb30e2
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 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 }