Package Details: xburst-tools 201206-1

Git Clone URL: https://aur.archlinux.org/xburst-tools.git (read-only, click to copy)
Package Base: xburst-tools
Description: A collection of boot and flash tools for XBurst devices.
Upstream URL: http://projects.qi-hardware.com/index.php/p/xburst-tools/
Licenses: GPL
Submitter: ormris
Maintainer: kyak
Last Packager: kyak
Votes: 3
Popularity: 0.000000
First Submitted: 2011-02-05 05:37 (UTC)
Last Updated: 2015-06-08 14:01 (UTC)

Latest Comments

micwoj92 commented on 2024-01-17 00:16 (UTC)

Fails to build with

==> Starting build()...
configure.ac:8: warning: 'AM_CONFIG_HEADER': this macro is obsolete.
configure.ac:8: You should use the 'AC_CONFIG_HEADERS' macro instead.
./lib/autoconf/general.m4:2434: AC_DIAGNOSE is expanded from...
aclocal.m4:1125: AM_CONFIG_HEADER is expanded from...
configure.ac:8: the top level
configure.ac:81: warning: The macro 'AC_HEADER_STDC' is obsolete.
configure.ac:81: You should run autoupdate.
./lib/autoconf/headers.m4:663: AC_HEADER_STDC is expanded from...
configure.ac:81: the top level
configure.ac:6: error: required directory ./m4 does not exist
cp: cannot create regular file 'm4/compile': No such file or directory
configure.ac:37: error: installing 'm4/compile'
configure.ac:37:     error while copying
cp: cannot create regular file 'm4/config.guess': No such file or directory
configure.ac:90: error: installing 'm4/config.guess'
configure.ac:90:     error while copying
cp: cannot create regular file 'm4/config.sub': No such file or directory
configure.ac:90: error: installing 'm4/config.sub'
configure.ac:90:     error while copying
cp: cannot create regular file 'm4/install-sh': No such file or directory
configure.ac:7: error: installing 'm4/install-sh'
configure.ac:7:     error while copying
cp: cannot create regular file 'm4/missing': No such file or directory
configure.ac:7: error: installing 'm4/missing'
configure.ac:7:     error while copying
cp: cannot create regular file 'm4/depcomp': No such file or directory
jzboot/src/Makefile.am: error: installing 'm4/depcomp'
jzboot/src/Makefile.am:     error while copying
autoreconf: error: automake failed with exit status: 1
==> ERROR: A failure occurred in build().
    Aborting...

kyak commented on 2014-05-19 14:55 (UTC)

Thanks, updated

XenGi commented on 2014-05-18 21:15 (UTC)

new md5sum fpr version 201206 is b36369779a18d25fdd597ce5c86da1df.

<deleted-account> commented on 2012-05-11 08:56 (UTC)

Version 201105 seems to work by just changing pkgver (md5sum is 86c6655b3de39cd0cb12d04ce21b43df)

ormris commented on 2011-04-06 23:30 (UTC)

Fixed at long last.

jay7 commented on 2011-02-27 21:50 (UTC)

This package have some flaws. 1) installing config file into /usr/etc 2) building with default prefix (/usr/local) I have included patch below that should fix this. --- PKGBUILD.orig 2011-02-21 12:34:26.000000000 +0300 +++ PKGBUILD 2011-02-28 00:42:46.000000000 +0300 @@ -15,11 +15,12 @@ build() { ./autogen.sh - CROSS_COMPILE="mipsel-linux-gnu-" ./configure + CROSS_COMPILE="mipsel-linux-gnu-" ./configure --prefix=/usr --sysconfdir=/etc make } package() { cd $srcdir - make prefix=$pkgdir/usr install + make prefix=$pkgdir/usr sysconfdir=$pkgdir/etc install }