mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 20:57:16 +08:00
23 lines
582 B
Bash
23 lines
582 B
Bash
pkgname=avrdude
|
|
pkgver=5.10
|
|
pkgrel=1
|
|
pkgdesc="Download/upload/manipulate the ROM and EEPROM contents of AVR microcontrollers"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.nongnu.org/avrdude/"
|
|
license=('GPL')
|
|
depends=('libusb-compat' 'readline')
|
|
source=(http://download.savannah.gnu.org/releases/avrdude/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('69b082683047e054348088fd63bad2ff')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
|
|
./configure --mandir=/usr/share/man --prefix=/usr --sysconfdir=/etc
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
|
|
make DESTDIR=${pkgdir} install
|
|
} |