wok-next view avrdude/receipt @ rev 20082

Up clementine
author Xander Ziiryanoff <psychomaniak@xakep.ru>
date Wed Oct 25 12:19:39 2017 +0200 (2017-10-25)
parents 533d88c4b302
children 757d032c55c7
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 readline-dev udev-dev"
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 }