Package Details: gnumeric-minimal 1.12.55-4

Git Clone URL: https://aur.archlinux.org/gnumeric-minimal.git (read-only, click to copy)
Package Base: gnumeric-minimal
Description: A GNOME-less spreadsheet program
Upstream URL: http://www.gnumeric.org/
Licenses: GPL
Conflicts: gnumeric
Provides: gnumeric
Submitter: None
Maintainer: None
Last Packager: haawda
Votes: 8
Popularity: 0.000000
First Submitted: 2012-01-19 12:08 (UTC)
Last Updated: 2023-03-06 16:31 (UTC)

Dependencies (6)

Required by (2)

Sources (1)

Latest Comments

1 2 3 Next › Last »

FabioLolix commented on 2023-03-05 12:00 (UTC)

Hello.

This fails to build in clean chroot:

aclocal: installing 'm4/yelp.m4' from '/usr/share/aclocal/yelp.m4'
Copying file po/Makefile.in.in

Please add the files
  codeset.m4 gettext.m4 glibc21.m4 iconv.m4 isc-posix.m4 lcmessage.m4
  progtest.m4
from the /usr/share/aclocal directory to your autoconf macro directory
or directly to your aclocal.m4 file.
You will also need config.guess and config.sub, which you can get from
ftp://ftp.gnu.org/pub/gnu/config/.

./autogen.sh: line 22: gtkdocize: command not found
==> ERROR: A failure occurred in build().
    Aborting...

Already reported https://aur.archlinux.org/packages/gnumeric-minimal?O=0#comment-860136

Usually minimal/light packages don't build docs

GuUrb1na commented on 2023-03-05 01:54 (UTC) (edited on 2023-03-05 01:54 (UTC) by GuUrb1na)

Not sure if it helps anyone but i could not find anything regarding the "Lasem" dependency that goffice needs so i just erased it from the list of dependencies in the PKGBUILD and it was able to install goffice and gnumeric without issues

haawda commented on 2023-02-03 18:22 (UTC)

for goffice 0.10.55 pull the PKGBUILD with asp, change pkgver to 0.10.55 and the _commit to 29c5bfe6333b499a051f969464c6804e28616736

haawda commented on 2023-01-20 17:34 (UTC)

for goffice 0.10.53 pull the PKGBUILD with asp, change pkgver to 0.10.5 and _commit to 89dbf231592bc23b8a8c88a85bdbc047dd899933

haawda commented on 2022-09-20 11:39 (UTC)

for goffice 0.10.53 pull the PKGBUILD with asp and change pkgver to 0.10.53 and commit to e3a22797126da4d3fac8747799ed527933de6b51

haawda commented on 2022-04-20 12:57 (UTC)

for goffice 0.10.52 pull the PKGBUILD with asp and change pkgver to 0.10.52 and commit to ea3daf5637c054f58ac8174de65d0d06217c6b33

karlr commented on 2022-04-07 05:19 (UTC)

I think the package gtk-doc is missing from the build dependencies.

Version 1.12.51-1 fails to build for me because gtkdocize is missing. After I installed the gtk-doc package everything worked fine.

fungalnet commented on 2020-09-01 12:33 (UTC) (edited on 2020-09-01 12:43 (UTC) by fungalnet)

Thank you it worked perfectly

haawda commented on 2020-09-01 11:41 (UTC)

Try this PKGBUILD to build goffice 0.10.48. It works for me, but is not allowed to be uploaded to AUR, as it would be a duplicate.

# Maintainer: Jan de Groot <jgc@archlinux.org>
# Contributor: Aaron Griffin <aaron@archlinux.org>

pkgname=goffice
pkgver=0.10.48
pkgrel=1
pkgdesc="A GLib/GTK+ set of document-centric objects and charting library"
url="https://git.gnome.org/browse/goffice"
arch=(x86_64)
license=(GPL)
depends=(librsvg gtk3 libgsf libspectre libxslt lasem)
makedepends=(intltool gtk-doc gobject-introspection autoconf-archive git)
_commit=f3f7d440 # tags/GOFFICE_0_10_48^0
source=("git+https://gitlab.gnome.org/GNOME/goffice.git#commit=$_commit")
sha256sums=('SKIP')

pkgver() {
  cd $pkgname
  git describe --tags | sed 's/^GOFFICE_//;s/_/./g;s/-/+/g'
}

prepare() {
  cd $pkgname
  NOCONFIGURE=1 ./autogen.sh
}

build() {
  cd $pkgname
  ./configure --prefix=/usr --sysconfdir=/etc \
      --localstatedir=/var --disable-static --enable-introspection --enable-gtk-doc

  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
  make
}

package() {
  cd $pkgname
  make DESTDIR="${pkgdir}" install
}

fungalnet commented on 2020-08-31 19:21 (UTC)

Even if you edit the pkgbuild to build on goffice 10.47 it is looking for items that don't exist in 10.47 /usr/bin/ld: ./.libs/libspreadsheet.so: undefined reference to goc_group_get_children' /usr/bin/ld: ./.libs/libspreadsheet.so: undefined reference togoc_group_freeze' /usr/bin/ld: ./.libs/libspreadsheet.so: undefined reference to `goc_group_get_child'

Upstream goffice seems abandoned