wok view avrdude/receipt @ rev 20290

linux-module-headers: update deps for x86_64 target
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Apr 16 09:37:49 2018 +0200 (2018-04-16)
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 }