wok-current annotate tcc-win32/receipt @ rev 14871
musl-libc: fix genpkg_rules
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Jul 23 09:36:13 2013 +0000 (2013-07-23) |
parents | 31f23d874090 |
children | 76b72f1ad63c |
rev | line source |
---|---|
pascal@5573 | 1 # SliTaz package receipt. |
pascal@5573 | 2 |
pascal@5573 | 3 PACKAGE="tcc-win32" |
pascal@14343 | 4 VERSION="0.9.26" |
pascal@5573 | 5 CATEGORY="development" |
pascal@5573 | 6 SHORT_DESC="fast Tiny C cross Compiler to win32 target." |
pascal@5573 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@14781 | 8 LICENSE="LGPL" |
pascal@13395 | 9 WEB_SITE="http://bellard.org/tcc/" |
pascal@5573 | 10 DEPENDS="tcc-common" |
pascal@14354 | 11 SUGGESTED="mingw32-w32api" |
pascal@5573 | 12 WANTED="tcc" |
pascal@13033 | 13 TAGS="compiler C" |
pascal@5573 | 14 |
pascal@5573 | 15 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@5573 | 16 genpkg_rules() |
pascal@5573 | 17 { |
pascal@14347 | 18 mkdir -p $fs/usr/bin $fs/usr/lib/tcc |
pascal@14346 | 19 cp -a $install/usr/bin/*-win32-tcc $fs/usr/bin |
pascal@14347 | 20 cp -a $install/usr/lib/tcc/win32 $fs/usr/lib/tcc |
pascal@5573 | 21 } |
pascal@5573 | 22 |