wok-next annotate nqc/receipt @ rev 18491
lxpanel,pcmanfm: stuff/autostart: update NotShowIn
author | Xander Ziiryanoff <psychomaniak@xakep.ru> |
---|---|
date | Sat Oct 10 19:39:47 2015 +0200 (2015-10-10) |
parents | d16a22f66327 |
children | 8a74e7b0ff7f |
rev | line source |
---|---|
rcx@3924 | 1 # SliTaz package receipt. |
rcx@3924 | 2 |
rcx@3924 | 3 PACKAGE="nqc" |
rcx@3924 | 4 VERSION="3.1.r6-4" |
rcx@3924 | 5 CATEGORY="development" |
rcx@3991 | 6 SHORT_DESC="Compiler for the Not Quite C programming language." |
rcx@3924 | 7 MAINTAINER="rcx@zoominternet.net" |
pascal@15584 | 8 LICENSE="MPL" |
rcx@3924 | 9 TARBALL="$PACKAGE-$VERSION.bz2" |
rcx@3924 | 10 WEB_SITE="http://bricxcc.sourceforge.net/nqc/" |
rcx@3924 | 11 #WGET_URL="http://bricxcc.sourceforge.net/nqc/release/$TARBALL" |
rcx@3924 | 12 WGET_URL="http://users.zoominternet.net/~rcx/$TARBALL" |
jozee@4969 | 13 TAGS="compiler language" |
rcx@3924 | 14 |
pascal@15584 | 15 DEPENDS="glibc-base gcc-lib-base" |
pascal@15584 | 16 BUILD_DEPENDS="flex" |
pascal@15584 | 17 |
rcx@3924 | 18 # Rules to configure and make the package. |
rcx@3924 | 19 compile_rules() |
rcx@3924 | 20 { |
rcx@3924 | 21 cd $src |
pascal@12796 | 22 [ -s $TARBALL ] && tar xjf $TARBALL -C .. |
gokhlayeh@8863 | 23 make -j1 TOOLPREFIX="$TOOLPREFIX" \ |
rcx@3924 | 24 DEFAULT_SERIAL_NAME='"/dev/ttyS0"' \ |
rcx@3924 | 25 DEFAULT_USB_NAME='"/dev/usb/legousbtower0"' \ |
rcx@3924 | 26 DEFAULT_PORT_NAME='"usb"' && |
gokhlayeh@8863 | 27 make PREFIX=/usr install |
rcx@3924 | 28 } |
rcx@3924 | 29 |
rcx@3924 | 30 # Rules to gen a SliTaz package suitable for Tazpkg. |
rcx@3924 | 31 genpkg_rules() |
rcx@3924 | 32 { |
rcx@3924 | 33 mkdir -p $fs/usr |
pascal@15584 | 34 cp -a $install/usr/bin $fs/usr |
rcx@3924 | 35 } |