Package Details: srecord 1.65.0-2

Git Clone URL: https://aur.archlinux.org/srecord.git (read-only, click to copy)
Package Base: srecord
Description: The SRecord package is a collection of powerful tools for manipulating EPROM load files.
Upstream URL: https://srecord.sourceforge.net
Licenses: GPL3
Submitter: vicencb
Maintainer: ejona86
Last Packager: ejona86
Votes: 33
Popularity: 0.000000
First Submitted: 2009-11-07 18:45 (UTC)
Last Updated: 2025-08-31 05:16 (UTC)

Latest Comments

« First ‹ Previous 1 2 3

Tybo commented on 2012-04-14 14:45 (UTC)

Hi, The package fails to build, because the current version of srecord is now 1.59 and the archive corresponding to version 1.57 cannot be found using the link given in pkgbuild. The following change applied to PKGBUILD ought to produce an up-to-date package: --- PKGBUILD.orig 2012-04-14 16:35:51.674412106 +0200 +++ PKGBUILD.new 2012-04-14 16:42:31.997324644 +0200 @@ -1,5 +1,5 @@ pkgname=srecord -pkgver=1.57 +pkgver=1.59 pkgrel=1 pkgdesc="The SRecord package is a collection of powerful tools for manipulating EPROM load files." arch=('i686' 'x86_64') @@ -16,4 +16,4 @@ make || return 1 make DESTDIR="$startdir/pkg" install || return 1 } -md5sums=('2c371f75f05273fb05f587c1a36d98b7') +md5sums=('5e01ba19c4f3fb8b5beca47cb46665f2') Cheers!

vicencb commented on 2010-07-16 21:42 (UTC)

Removed again the parallel make option.

dimorphpromid commented on 2010-07-15 08:07 (UTC)

I have race conditions with current PKGBUILD, the makepkg aborts ... [code] /bin/install -c -m 644 tmp /tmp/yaourt-tmp-fricke/aur-srecord/pkg/usr/share/man/man1/srec_info.1 /bin/install -c -m 644 tmp /tmp/yaourt-tmp-fricke/aur-srecord/pkg/usr/share/man/man1/srec_examples.1 soelim -I. -Iman/man3 man/man3/srecord.3 > tmp soelim -I. -Iman/man3 man/man3/srecord_license.3 > tmp /bin/install -c -m 644 tmp /tmp/yaourt-tmp-fricke/aur-srecord/pkg/usr/share/man/man1/srec_input.1 /bin/install -c -m 644 tmp /tmp/yaourt-tmp-fricke/aur-srecord/pkg/usr/share/man/man1/srec_license.1 /bin/install: cannot stat `tmp': No such file or directory make: *** [/tmp/yaourt-tmp-fricke/aur-srecord/pkg/usr/share/man/man1/srec_input.1] Error 1 make: *** Waiting for unfinished jobs.... /bin/install: cannot stat `tmp': No such file or directory make: *** [/tmp/yaourt-tmp-fricke/aur-srecord/pkg/usr/share/man/man1/srec_license.1] Error 1 /bin/install -c -m 644 tmp /tmp/yaourt-tmp-fricke/aur-srecord/pkg/usr/share/man/man3/srecord.3 /bin/install -c -m 644 tmp /tmp/yaourt-tmp-fricke/aur-srecord/pkg/usr/share/man/man3/srecord_license.3 Aborting... [/code] with options=('!makeflags') I dont have this race ...

vicencb commented on 2010-03-27 00:04 (UTC)

Updated to version 1.55 Tested with -j2 make flag and worked ok

<deleted-account> commented on 2010-03-26 11:05 (UTC)

The source file doesn't exists anymore, so I've updated the PKGBUILD to the new version: pkgname=srecord pkgver=1.55 pkgrel=1 pkgdesc="The SRecord package is a collection of powerful tools for manipulating EPROM load files." arch=('i686' 'x86_64') license=('GPL') makedepends=('boost') url="http://srecord.sourceforge.net/" source=("http://srecord.sourceforge.net/${pkgname}-${pkgver}.tar.gz") md5sums=('6451ee0326eec2fb9a7edb22b6e23d48') # broken makefile has race conditions, remove "-j" MAKEFLAGS= build() { cd "$srcdir/$pkgname-$pkgver" ./configure --prefix=/usr make || return 1 make DESTDIR="$startdir/pkg" install || return 1 }