Package Details: easy_spice 0.6.8-5

Git Clone URL: https://aur.archlinux.org/easy_spice.git (read-only, click to copy)
Package Base: easy_spice
Description: Electronic circuit simulator. SPICE frontend, using gschem for schematics and ngspice as simulator
Upstream URL: http://easy-spice.sourceforge.net/
Licenses: GPL
Submitter: None
Maintainer: None
Last Packager: willemw
Votes: 32
Popularity: 0.000000
First Submitted: 2006-10-02 07:33 (UTC)
Last Updated: 2016-03-06 20:19 (UTC)

Latest Comments

1 2 Next › Last »

willemw commented on 2016-03-06 20:20 (UTC)

@bidulock: Thanks. Fixed.

bidulock commented on 2016-03-06 13:25 (UTC)

license should be an array

kasbah commented on 2013-05-09 16:29 (UTC)

thanks, updated.

test0 commented on 2013-05-09 16:21 (UTC)

Please change make DESTDIR=${startdir}/pkg install to make DESTDIR=${pkgdir} install otherwise the package is empty.

kasbah commented on 2012-09-18 22:55 (UTC)

Ahh, I see, my bad, fixed.

layus commented on 2012-09-18 22:43 (UTC)

Sorry, I was unclear. The compilation failed with the current PKGBUILD : /usr/bin/ld: spice.o: undefined reference to symbol 'pow@@GLIBC_2.2.5' /usr/bin/ld: note: 'pow@@GLIBC_2.2.5' is defined in DSO .../libm.so so try adding it to the linker command line .../libm.so: could not read symbols: Invalid operation I soved by adding ``LIBS="-lm"'' to the ./configure script. This works without the two ``export'' lines, so my suggestion is to modify the PKGBUILD as described in the previous post. To avoid any problems, one could even leave the two export lines, as they are unlikely to cause breakage, and their removal could prevent neburski from compiling (while very unlikely) Oh and by the way, thank you for maintaining this package :-)

kasbah commented on 2012-09-18 20:26 (UTC)

Errr... what are you saying Layus? Do I need to change anything?

layus commented on 2012-09-18 17:33 (UTC)

remove the two export lines and add LIBS="-lm" to the ./configure command. build() { cd ${startdir}/src/${pkgname}-${pkgver} ./configure --prefix=/usr LIBS="-lm" ...... } worked for me.