wok-current diff avrdude/receipt @ rev 20112
Add avrdude
author | Xander Ziiryanoff <psychomaniak@xakep.ru> |
---|---|
date | Wed Oct 11 21:57:55 2017 +0200 (2017-10-11) |
parents | |
children | 9415addc582d |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/avrdude/receipt Wed Oct 11 21:57:55 2017 +0200 1.3 @@ -0,0 +1,31 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="avrdude" 1.7 +VERSION="6.3" 1.8 +CATEGORY="electronics" 1.9 +SHORT_DESC="Download/upload/manipulate the ROM and EEPROM contents of AVR microcontrollers" 1.10 +MAINTAINER="psychomaniak@xakep.ru" 1.11 +LICENSE="GPL" 1.12 +WEB_SITE="http://www.nongnu.org/avrdude/" 1.13 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.14 +WGET_URL="http://download.savannah.gnu.org/releases/$PACKAGE/$TARBALL" 1.15 + 1.16 +DEPENDS="libftdi libusb-compat libusb readline elfutils" 1.17 +BUILD_DEPENDS="$DEPENDS libusb-compat-dev libusb-dev libftdi-dev" 1.18 + 1.19 +# Rules to configure and make the package. 1.20 +compile_rules() 1.21 +{ 1.22 + ./configure \ 1.23 + --mandir=/usr/share/man \ 1.24 + --prefix=/usr \ 1.25 + --sysconfdir=/etc \ 1.26 + --enable-linuxgpio 1.27 + make && make install 1.28 +} 1.29 + 1.30 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.31 +genpkg_rules() 1.32 +{ 1.33 + cp -a $install/* $fs 1.34 +}