The libical package contains an implementation of the iCalendar protocols and data formats.
This package is known to build and work properly using an LFS-7.7 platform.
Download (HTTP): https://github.com/libical/libical/releases/download/v1.0.1/libical-1.0.1.tar.gz
Download MD5 sum: af91db06b22559f863869c5a382ad08a
Download size: 704 KB
Estimated disk space required: 12 MB (additional 13 MB for the API documentation)
Estimated build time: 0.1 SBU
Doxygen-1.8.9.1 (for the API documentation)
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/libical
Install libical by running the following commands:
mkdir build &&
cd build &&
cmake -DCMAKE_INSTALL_PREFIX=/usr \
      -DCMAKE_BUILD_TYPE=Release  \
      -DSHARED_ONLY=yes           \
      .. &&
make
        If you have Doxygen-1.8.9.1 installed and wish to build the API documentation, issue:
make docs
To test the results, issue: make test.
          Now, as the root user:
        
make install
          If you have built the API documentation, install by issuing, as
          root user:
        
install -vdm755 /usr/share/doc/libical-1.0.1/html && cp -vr apidocs/html/* /usr/share/doc/libical-1.0.1/html
          -DCMAKE_BUILD_TYPE=Release:
          This switch is used to apply higher level of the compiler
          optimizations.
        
          -DSHARED_ONLY=yes: This
          switch is used in order to only build the shared libraries.
        
Last updated on 2015-02-23 21:00:51 -0800