wok view avrdude/receipt @ rev 21717

updated protobuf, protobuf-dev and protobuf-python again (2.4.1 -> 3.8.0)
author Hans-G?nter Theisgen
date Wed Jun 12 13:36:14 2019 +0100 (2019-06-12)
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 }