Package Details: minipro-git 0.7.2.r67.gb7bfb14-1

Git Clone URL: https://aur.archlinux.org/minipro-git.git (read-only, click to copy)
Package Base: minipro-git
Description: Open source chip programming utility for autoelectric.cn MiniPro TL866xx series (TL866CS, TL866A, and TL866II+)
Upstream URL: https://gitlab.com/DavidGriffith/minipro
Licenses: GPL-3.0-only
Conflicts: minipro
Provides: minipro
Submitter: queueRAM
Maintainer: uffe
Last Packager: uffe
Votes: 12
Popularity: 0.000000
First Submitted: 2015-02-09 23:23 (UTC)
Last Updated: 2024-10-06 20:22 (UTC)

Dependencies (4)

Required by (0)

Sources (1)

Latest Comments

1 2 Next › Last »

grzechoo commented on 2024-10-08 20:07 (UTC)

@uffe, yup, that bug was introduced by project owner and solved: https://gitlab.com/DavidGriffith/minipro/-/commit/b7bfb1488688f34fd6093eadae537d5ae99ce16a

uffe commented on 2024-10-07 13:46 (UTC)

@grzechoo: well that was something that the minipro project owner had introduced - and something that he had to fix

grzechoo commented on 2024-10-06 19:54 (UTC)

minipro-git 0.7.2.r66.g51fd060-1 does not build. It stops on an error: "algorithm.xml is missing. Please put it here."

Michael.Sasser commented on 2021-03-08 03:12 (UTC)

minipro uses an udev rule 61-minipro-plugdev.rules which uses the group plugdev which does not exist on Arch. This produces a systemd-udev error:

systemd-udevd[324]: /usr/lib/udev/rules.d/61-minipro-plugdev.rules:14 Unknown group 'plugdev', ignoring

synthead commented on 2020-09-18 17:57 (UTC)

Thanks @uffe! Looks great!

uffe commented on 2020-09-17 17:02 (UTC)

@thierer and @Synthead: thanks for the heads-up and fix suggestions - new PKGBUILD pushed :-)

synthead commented on 2020-09-09 00:17 (UTC)

Please pass PREFIX to make in build(). minipro --list cannot find infoic.xml without this env var because minipro is looking for infoic.xml in /usr/local/share/minipro.

build()
{
  cd "${srcdir}/${pkgname}"
  make PREFIX="/usr"
}

thierer commented on 2020-08-29 15:13 (UTC) (edited on 2020-08-29 15:16 (UTC) by thierer)

minipro now uses an external device database file. To set the directory where the global version of this file is searched to /usr/share/minipro/ (instead of the default /usr/local/...), PREFIX has to be set for make call in build():

diff --git a/PKGBUILD b/PKGBUILD
index ed00f0f..a16aa53 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -26,7 +26,7 @@ pkgver()
 build()
 {
   cd "${srcdir}/${pkgname}"
-  make
+  make PREFIX="/usr"
 }

 package()

Sanpi commented on 2020-02-26 15:45 (UTC) (edited on 2020-02-26 15:46 (UTC) by Sanpi)

srec_cat (srecord) is required by miniprohex.

queueRAM commented on 2018-12-27 21:07 (UTC)

Thank you jfcandidofilho and uffe for helping keep this package updated!