# Packages Required to build extension BUILD_DEPS="" # Dependancies of final extension (Will be in .tcz.dep) TCZ_DEPS="" # Dependencies for developement (Will be in .tcz.dep) DEV_TCZ_DEPS="" GITLINK="git://git.drogon.net/wiringPi" SRCLINK="" SRCNAME="" VERSION="2.47" WORKDIR="iringPi" EXTNAME="wiringPi" TMPDIR=/tmp/$EXTNAME info_DESCRIPTION="Ninja is a small build system with a focus on speed." info_AUTHOR="Various, see https://github.com/ninja-build/ninja" info_COPYING="Apache License 2.0" info_EXTMAINTAINER="paul-123" info_TAGS="COMPILER BUILD" # if Patches are needed, create directory for patches and put the patches there. # Patches should need -p0 and should end with suffex .patch P0_PATCHDIR="" # Patches should need -p1 and should end with suffex .patch P1_PATCHDIR="gitpatch" #If package requires autotools to generate configure, enter command here AUTOGEN="" # Enter Configure Command line here CONFIGURE="" # Enter Make commandline MAKE="build DESTDIR=$TMPDIR" # Enter Install Command MAKE_INSTALL="" # If configuration files/start scripts are needed, use the following structure #CFG_FILE1="filename destination/path filemode" #CFG_FILE1="nanorc /usr/local/etc 664" # Use delete if there are files that need deleted, start at 1, and can have unlimited commands #delete_CMD1="" #delete_CMD2="" EXT_LIST="" dev_CMD1="mkdir -p $TMPDIR-dev/usr/local/lib" dev_CMD2="mv $TMPDIR/usr/local/include $TMPDIR-dev/usr/local" dev_CMD3="mv $TMPDIR/usr/local/lib/*.a $TMPDIR-dev/usr/local/lib" dev_CMD4="mv $TMPDIR/usr/local/lib/*.la $TMPDIR-dev/usr/local/lib" dev_CMD5="mv $TMPDIR/usr/local/lib/pkgconfig $TMPDIR-dev/usr/local/lib" doc_CMD1="mkdir -p $TMPDIR-doc/usr/local" doc_CMD2="mv $TMPDIR/usr/local/share $TMPDIR-doc/usr/local"