Files
haikuports/dev-embedded/avrdude/avrdude-6.0.1.recipe
Humdinger 064b69cead De-lint recipes.
*	avrdude
	SUMMARY must have at least 3 words

*	bebook
	SUMMARY must have at least 3 words
	Re-ordered blocks

*	bzflag
	SUMMARY must have at least 3 words
	Re-ordered blocks

*	c_ares
	SUMMARY must start with capital letter
	Re-ordered blocks

*	cmake
	SUMMARY must have at least 3 words
	Re-ordered blocks

*	command_not_found
	SUMMARY must have at least 3 words
	Added BUILD_PREREQUIRES
	Re-ordered blocks

*	confuse
	SUMMARY must start with capital letter
	Re-ordered blocks

*	cream
	SUMMARY must start with capital letter
	Re-ordered blocks

*	croscorefonts
	SUMMARY must have at least 3 words
	Re-ordered blocks

*	cssselect
	SUMMARY must start with capital letter
	Re-ordered blocks

*	dcron
	SUMMARY must start with capital letter
	Re-ordered blocks

*	eggchess
	SUMMARY must have at least 3 words
	Re-ordered blocks
2015-08-08 08:16:04 +02:00

62 lines
1.4 KiB
Bash

SUMMARY="A tool to up/download to AVR microcontrollers"
DESCRIPTION="AVRDUDE is an utility to download/upload/manipulate the ROM and \
EEPROM contents of AVR microcontrollers using the in-system programming \
technique (ISP)."
HOMEPAGE="http://www.nongnu.org/avrdude/"
COPYRIGHT="2003-2013 Brian S. Dean"
LICENSE="GNU GPL v2"
REVISION="2"
SOURCE_URI="http://download.savannah.gnu.org/releases/avrdude/avrdude-6.0.1.tar.gz"
CHECKSUM_SHA256="c6804668dfa96b23185dfe2e8239089af4e4ae0b11aa7435bebb28c3260ede41"
PATCHES="avrdude-6.0.1.patch"
ARCHITECTURES="!x86_gcc2 x86 x86_64"
SECONDARY_ARCHITECTURES="x86"
GLOBAL_WRITABLE_FILES="
settings/avrdude.conf keep-old
"
PROVIDES="
avrdude$secondaryArchSuffix = $portVersion
cmd:avrdude$secondaryArchSuffix = $portVersion
"
REQUIRES="
haiku$secondaryArchSuffix
lib:libusb_1.0$secondaryArchSuffix
lib:libftdi1$secondaryArchSuffix
lib:libelf$secondaryArchSuffix
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
devel:libusb_1.0$secondaryArchSuffix
devel:libftdi1$secondaryArchSuffix
devel:libelf$secondaryArchSuffix
"
BUILD_PREREQUIRES="
cmd:gcc$secondaryArchSuffix
cmd:ld$secondaryArchSuffix
cmd:automake
cmd:autoconf
cmd:make
cmd:yacc
cmd:flex
cmd:pkg_config$secondaryArchSuffix
"
BUILD()
{
export PKG_CONFIG_LIBDIR=/system/develop/lib/x86/pkgconfig/
aclocal
autoconf
automake
runConfigure ./configure
make $jobArgs
}
INSTALL()
{
make install
}