Package Details: minipro-git 0.6.r15.g0c1e950-1

Git Clone URL: https://aur.archlinux.org/minipro-git.git (read-only, click to copy)
Package Base: minipro-git
Description: Open source programming utility for autoelectric.cn Minipro TL866
Upstream URL: https://gitlab.com/DavidGriffith/minipro
Licenses: GPL
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: 2022-09-24 20:26 (UTC)

Dependencies (3)

Required by (0)

Sources (1)

Latest Comments

1 2 Next › Last »

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!

jfcandidofilho commented on 2018-12-18 07:38 (UTC) (edited on 2018-12-27 22:43 (UTC) by jfcandidofilho)

EDIT: this is not necessary anymore since @uffe took the job of maintaining the package.

--

Since the maintainer has yet to update this, I made its PKGBUILD up-to-date. Most people that uses this won't need it though - probably.

https://github.com/jfcandidofilho/minipro-aur/blob/master/PKGBUILD

wcasanova commented on 2018-07-01 23:19 (UTC)

project is moved to gitlab https://gitlab.com/DavidGriffith/minipro

<deleted-account> commented on 2016-04-23 20:57 (UTC)

I had the problem too: error: failed to commit transaction (conflicting files) minipro-git: /bin exists in filesystem Errors occurred, no packages were upgraded. As workaround, I replaced this string: make PREFIX="${pkgdir}" \ to this one: make PREFIX="${pkgdir}/usr/" \ Please, update PKGBUILD.