wok view avrdude/receipt @ rev 22859

updated gnaughty (1.2.4 -> 1.2.5)
author Hans-G?nter Theisgen
date Thu Feb 20 14:50:56 2020 +0100 (2020-02-20)
parents 9415addc582d
children 9af0e03b8ad0
line source
1 # SliTaz package receipt.
3 PACKAGE="avrdude"
4 VERSION="6.3"
5 CATEGORY="electronics"
6 SHORT_DESC="Download/upload/manipulate the ROM and EEPROM contents of AVR microcontrollers"
7 MAINTAINER="psychomaniak@xakep.ru"
8 LICENSE="GPL"
9 WEB_SITE="http://www.nongnu.org/avrdude/"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="http://download.savannah.gnu.org/releases/$PACKAGE/$TARBALL"
13 DEPENDS="libftdi libusb-compat libusb readline elfutils"
14 BUILD_DEPENDS="$DEPENDS libusb-compat-dev libusb-dev libftdi-dev elfutils-dev \
15 file"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --mandir=/usr/share/man \
22 --prefix=/usr \
23 --sysconfdir=/etc \
24 --enable-linuxgpio
25 make && make install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 cp -a $install/* $fs
32 }