wok view avrdude/receipt @ rev 20345

libksba update: 1.3.4 (2016 May) -> 1.3.5 (2016 August)
author Erkan Yilmaz <erkan@slitaz.org>
date Sat Jun 09 10:31:28 2018 +0000 (2018-06-09)
parents 9e45f21b3946
children 7bc5e65f1caa
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"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure \
20 --mandir=/usr/share/man \
21 --prefix=/usr \
22 --sysconfdir=/etc \
23 --enable-linuxgpio
24 make && make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 cp -a $install/* $fs
31 }