Search Criteria
Package Details: zygrib 8.0.1-3
Git Clone URL: | https://aur.archlinux.org/zygrib.git (read-only, click to copy) |
---|---|
Package Base: | zygrib |
Description: | Weather data visualization, GRIB file viewer |
Upstream URL: | http://www.zygrib.org/ |
Keywords: | data GRIB visualization weather |
Licenses: | |
Submitter: | None |
Maintainer: | SydMax (Dwaddle) |
Last Packager: | Dwaddle |
Votes: | 16 |
Popularity: | 0.000754 |
First Submitted: | 2009-09-22 20:49 |
Last Updated: | 2019-03-20 09:23 |
Dependencies (8)
- bzip2 (bzip2-git, bzip2-rustify-git, bzip2-with-lbzip2-symlinks)
- libnova
- qt5-base (qt5-base-git, qt5-base-fractional-fix, qt5-base-headless)
- qwt
- ttf-liberation
- zlib>=1.2.3 (zlib-static, zlib-git, zlib-asm, minizip-asm, zlib-ng-git)
- proj>=4.6.0 (proj-configure-git, proj-git)
- zygrib-maps (optional) – gshhs high-resolution maps from zygrib.org
Latest Comments
1 2 3 4 Next › Last »
unclezz commented on 2020-08-28 12:02
it currently fails to compile:
https://pastebin.com/Yy3XFKnd
martynjy commented on 2019-07-01 14:38
Running Zygrib now gives:
./bin/zyGrib: error while loading shared libraries: libproj.so.13: cannot open shared object file: No such file or directory
Today 'proj' was updated (5.2.0-1 -> 6.1.0-1) and there is no 'libproj.so.13'!
Dwaddle commented on 2017-06-06 10:40
I will make today a new .srconfo file
martynjy commented on 2017-06-06 09:00
The PKGBUILD is 'pkgrel=3' The .SRCINFO is 'pkgrel=2'.
Dwaddle commented on 2017-05-04 14:06
With a few adjustments, builds without any problem, as it should on 686.
thanks to yrreiht for the hint to remove the -m64 and -D__64BIT__
https://github.com/dwaddle/zyGrib-pkgbuild
yrreiht commented on 2017-01-12 17:42
cd src/g2clib; make
gcc -c -O3 -g -m64 -I/nwprod/lib/include/ -DUSE_JPEG2000 -DUSE_PNG -D__64BIT__ gridtemplates.c
make[1]: *** [makefile:89: libg2c.a(gridtemplates.o)] Error 1
maybe need to patch makefile in src/g2clib
CFLAGS= -O3 -g -m64 $(INC) $(DEFS) -D__64BIT__
CFLAGS= -O3 $(INC) $(DEFS)
Thanks for your attention
SydMax commented on 2017-01-12 12:16
yrreiht, can not reproduce. Successfully built working i686 package.
yrreiht commented on 2017-01-11 19:06
PKGBUILD should be arch=('x86_64') only.
Doesn't build for i686 architecture.
SydMax commented on 2017-01-06 10:15
Updated package with biondilbiondo's patch. Now it builds and works.
biondilbiondo commented on 2017-01-05 13:19
olivierlm commented on 2016-12-12 13:25
Build is failing for me on last version (8.0.1-1):
'''
enc_jpeg2000.c:124:10: erreur : ‘jas_image_t {alias struct <anonymous>}’ has no member named ‘inmem_’
image.inmem_=1;
^
make[1]: *** [makefile:89: libg2c.a(enc_jpeg2000.o)] Error 1
'''
Any idea ?
_____________________________
I got this error too. I solved adding in PKGBUILD the following lines:
prepare() {
cd "$srcdir/$_upname-$pkgver"
sed 's/\(^.*image.inmem_=1.*$\)/\/\/\1/' src/g2clib/enc_jpeg2000.c > src/g2clib/enc_jpeg2000.c.tmp; mv src/g2clib/enc_jpeg2000.c.tmp src/g2clib/enc_jpeg2000.c
}
It worked for me.