wok annotate nqc/receipt @ rev 19709

ntfs-3g: no cp + wildcard + absolute links
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Feb 15 15:15:00 2017 +0100 (2017-02-15)
parents 3765f181a6d5
children 261355c410d6
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 {
pascal@12796 21 [ -s $TARBALL ] && tar xjf $TARBALL -C ..
gokhlayeh@8863 22 make -j1 TOOLPREFIX="$TOOLPREFIX" \
rcx@3924 23 DEFAULT_SERIAL_NAME='"/dev/ttyS0"' \
rcx@3924 24 DEFAULT_USB_NAME='"/dev/usb/legousbtower0"' \
rcx@3924 25 DEFAULT_PORT_NAME='"usb"' &&
pascal@19292 26 make PREFIX=/usr MANDIR=/usr/share/man/man1 install
rcx@3924 27 }
rcx@3924 28
rcx@3924 29 # Rules to gen a SliTaz package suitable for Tazpkg.
rcx@3924 30 genpkg_rules()
rcx@3924 31 {
rcx@3924 32 mkdir -p $fs/usr
pascal@15584 33 cp -a $install/usr/bin $fs/usr
rcx@3924 34 }