diff options
author | Erich Eckner <git@eckner.net> | 2018-05-27 10:13:52 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2018-05-27 10:13:52 +0200 |
commit | 14a8f5d3c7889f2046a008b1b1dc29f485ebb359 (patch) | |
tree | 644ebb60f7155dd5c139d233857684fbcd8546e6 /manualPorts/avrdude/Pkgfile | |
download | crux-ports-14a8f5d3c7889f2046a008b1b1dc29f485ebb359.tar.xz |
initial commit
Diffstat (limited to 'manualPorts/avrdude/Pkgfile')
-rw-r--r-- | manualPorts/avrdude/Pkgfile | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/manualPorts/avrdude/Pkgfile b/manualPorts/avrdude/Pkgfile new file mode 100644 index 0000000..a4ec425 --- /dev/null +++ b/manualPorts/avrdude/Pkgfile @@ -0,0 +1,24 @@ +# Description: Download/upload/manipulate the ROM and EEPROM contents of AVR microcontrollers +# URL: http://www.nongnu.org/avrdude/ +# Maintainer: Erich Eckner, crux at eckner dot net +# Contributor: Corrado Primier, bardo at aur dot archlinux dot org +# Contributor: Brad Fanella, bradfanella dot archlinux dot us +# Depends on: readline libftdi libusb-compat elfutils + +name=avrdude +version=6.3 +release=1 +source=("http://download.savannah.gnu.org/releases/${name}/${name}-${version}.tar.gz") + +build() { + + cd ${name}-${version} + + ./configure --mandir=/usr/share/man \ + --prefix=/usr \ + --sysconfdir=/etc + + make + make DESTDIR=$PKG install + +} |