Package Details: sc-im 0.8.3-2

Git Clone URL: https://aur.archlinux.org/sc-im.git (read-only, click to copy)
Package Base: sc-im
Description: A spreadsheet program based on SC
Upstream URL: https://github.com/andmarti1424/sc-im
Licenses: BSD
Conflicts: sc-im-git, scim-spreadsheet
Submitter: Rhinoceros
Maintainer: Rhinoceros (andmarti1424)
Last Packager: Rhinoceros
Votes: 60
Popularity: 0.88
First Submitted: 2015-09-05 01:44 (UTC)
Last Updated: 2024-03-23 01:20 (UTC)

Dependencies (4)

Required by (0)

Sources (2)

Pinned Comments

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 8 Next › Last »

cloudhead commented on 2020-06-04 13:51 (UTC)

gcc-8 is not needed if the -fcommon flag is passed to gcc. Editing the PKGBUILD build() phase to have:

build() {
  cd "$pkgname-$pkgver/src"
  make CC='gcc -fcommon'
}

Solves the problem for me.

Rhinoceros commented on 2020-05-27 12:22 (UTC) (edited on 2020-05-27 12:22 (UTC) by Rhinoceros)

Thanks @teleportex for all that information! I've updated the PKGBUILD. A few notes:

  • I didn't need to add the -C flag with a clean directory.
  • gcc8 was added to makedepends
  • gnuplot was added to optdepends, because the main functionality of sc-im works without it

Thanks again.

teleportex commented on 2020-05-27 09:44 (UTC) (edited on 2020-05-27 09:46 (UTC) by teleportex)

I have ecnountered 2 problems when building:

  • On issues of the repository i saw there are problems building with gcc 9 it is recomended to build with gcc-8, that worked to me.
  • A problem on locating some file, I compiled it from the package root using -C flag and worked.
  • Gnuplot not found.

Changes to the PKGBUILD:

  • Add gcc8 and gnuplot to dependencies
  • Build stage changed to:
build(){
    cd "$pkgname-$pkgver"
    make -C src CC=gcc-8
}

seifferth commented on 2020-01-20 12:51 (UTC)

@Tymekm: That's true. yacc is provided by bison, which is part of base-devel. base-devel is assumed as an implicit dependency for building any package (see <https://wiki.archlinux.org/index.php/PKGBUILD#makedepends>). This is why bison is not included in the makedepends array. Seeing that you don't seem to have bison installed on your system, you might want to run pacman -S base-devel.

[Sorry for cross-posting from sc-im-git, but this may be useful to know here as well.]

AnarchoJohn commented on 2020-01-20 10:52 (UTC) (edited on 2020-01-20 11:06 (UTC) by AnarchoJohn)

The build will fail without yacc.

yacc -d gram.y
make: yacc: Command not found
make: *** [Makefile:167: gram.c] Error 127

snake commented on 2019-11-11 23:25 (UTC)

@Rhinoceros It does indeed look like it. Last comment suggests that trouble comes from "shared formulas", but these are so common in speadsheets!

Rhinoceros commented on 2019-11-11 22:54 (UTC)

@snake Looks like this? https://github.com/andmarti1424/sc-im/issues/218

snake commented on 2019-11-11 22:49 (UTC)

Did anyone manage to make the --xlsx_readformulas option work? On my system it fails with a segmentation fault.

Rhinoceros commented on 2018-08-16 03:04 (UTC)

@terinjokes That's pretty straightforward for me to do, but I'm surprised that github.com would be reachable and githubusercontent.com wouldn't be?

terinjokes commented on 2018-08-15 20:27 (UTC)

Do you mind including the patch in the Git repo, rather than fetching it from GitHub? I was having issues fetching it this morning.