Search Criteria
Package Details: libdigidocpp 3.14.4.1401-1
Git Clone URL: | https://aur.archlinux.org/libdigidocpp.git (read-only, click to copy) |
---|---|
Package Base: | libdigidocpp |
Description: | Library for creating, signing and verification of digitally signed documents, according to XAdES and XML-DSIG standards |
Upstream URL: | http://www.id.ee/ |
Keywords: | esteid |
Licenses: | |
Submitter: | kevku |
Maintainer: | kevku |
Last Packager: | kevku |
Votes: | 13 |
Popularity: | 0.018432 |
First Submitted: | 2012-12-12 12:15 |
Last Updated: | 2020-10-05 19:23 |
Dependencies (4)
- xml-security-c
- cmake (cmake-git) (make)
- xsd (make)
- xxd (vim-qt-git, vim-qt-qt5-git, vim-minimal-git, gvim-git, vim-clipboard, vim-x11, xxd-standalone, vim-min, gvim-gtk2, gvim, vim) (make)
Latest Comments
« First ‹ Previous 1 2 3 4 Next › Last »
enar commented on 2016-08-12 17:43
minizip is now newer than the version bundled with the libdigidoc package. The build system will detect that there is a system minizip, but unfortunately compiler will still use bundled header files. There is a structure that now got one extra field and the qdigidoc application crashes when trying to save a .bdoc file.
For myself I fixed it by renaming the bundled minizip directory to _minizip.
mareke commented on 2016-07-12 12:03
"Could not load a transcoding service"
It seems to be problem my locale settings.
I reselect my Language and Formats from System settings > Region & Language. After restart building works
kaurman commented on 2016-07-12 11:52
mareke, is this indeed the entire error message you get?
Just built the package myself yesterday, compiled fine.
mareke commented on 2016-07-12 11:47
make: *** [Makefile:128: all] Error 2
==> ERROR: A failure occurred in build().
Aborting...
==> ERROR: Makepkg was unable to build libdigidocpp.
kevku commented on 2016-05-06 07:33
delete src folder from previous build
mareke commented on 2016-05-06 06:34
Building gives error!
make[1]: *** [src/CMakeFiles/digidocpp_priv.dir/all] Error 2
Makefile:127: recipe for target 'all' failed
make: *** [all] Error 2
stefonarch commented on 2016-05-05 05:55
Source libdigidocpp_3.12.0.1317.orig.tar.xz not found, 404, please update.
Packages:
https://installer.id.ee/media/ubuntu/pool/main/libd/libdigidocpp/
kevku commented on 2016-02-02 18:28
added xxd to makedepends
kevku commented on 2015-11-03 18:40
disabled boost tests
kaurman commented on 2015-11-03 18:23
I am by no means a C / C++ expert but maybe it would work if to change the build() section of PKGBUILD into something like this:
build() {
cd "$srcdir/"
sed -i '41i#define BOOST_MESSAGE(msg) BOOST_TEST_MESSAGE(msg)' ./test/libdigidocpp_boost.cpp
sed -i 's/^BOOST_GLOBAL_FIXTURE(DigiDocPPFixture)/BOOST_GLOBAL_FIXTURE(DigiDocPPFixture);/' ./test/libdigidocpp_boost.cpp
cmake . -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR="lib" -DCMAKE_INSTALL_SYSCONFDIR="/etc" -DINSTALL_DOC=NO -DSWIG_EXECUTABLE=""
make
}
Define could be made version specific if need be.
Like I said though, I'm not an expert so competent opinions are welcome...