git » avrdude.git » commit 0a85213

avrdude 8.0

author Urja (ARMLFS builder)
2025-05-03 16:49:43 UTC
committer Urja (ARMLFS builder)
2025-05-03 16:49:43 UTC
parent 4f2201e84e9c9bbc581c2600b58553f252e98597

avrdude 8.0

.SRCINFO +3 -1
.gitignore +2 -0
PKGBUILD +3 -2

diff --git a/.SRCINFO b/.SRCINFO
index fdfd1d3..93cf7e9 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,10 +1,11 @@
 pkgbase = avrdude
 	pkgdesc = Download/upload/manipulate the ROM and EEPROM contents of AVR microcontrollers
 	pkgver = 8.0
-	pkgrel = 1
+	pkgrel = 2
 	epoch = 1
 	url = https://github.com/avrdudes/avrdude/
 	arch = x86_64
+	arch = armv7h
 	license = GPL-2.0-or-later
 	makedepends = cmake
 	makedepends = ninja
@@ -13,6 +14,7 @@ pkgbase = avrdude
 	depends = libftdi
 	depends = libusb-compat
 	depends = readline
+	depends = libserialport
 	source = avrdude-8.0.tar.gz::https://github.com/avrdudes/avrdude/archive/refs/tags/v8.0.tar.gz
 	source = https://github.com/avrdudes/avrdude/releases/download/v8.0/avrdude-8.0.tar.gz.sig
 	validpgpkeys = EF497ABE47ED91B3FC3D7EA54D902FF7723BDEE9
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..a43258a
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+/src/
+/pkg/
diff --git a/PKGBUILD b/PKGBUILD
index b7b49d2..5b7ccc0 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -6,9 +6,9 @@
 pkgname=avrdude
 epoch=1
 pkgver=8.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Download/upload/manipulate the ROM and EEPROM contents of AVR microcontrollers"
-arch=('x86_64')
+arch=('x86_64' 'armv7h')
 url="https://github.com/avrdudes/avrdude/"
 license=('GPL-2.0-or-later')
 depends=(
@@ -17,6 +17,7 @@ depends=(
   'libftdi'
   'libusb-compat'
   'readline'
+  'libserialport'
 )
 makedepends=(
   'cmake'