# Template file for 'libreoffice-bin' pkgname=libreoffice-bin version=4.1.1 revision=1 maintainer="pancake " homepage="http://www.libreoffice.org/" license="LGPL-3" short_desc="Productivity suite compatible with other major office suites (binary build)" _disturi="http://download.documentfoundation.org/libreoffice/stable/${version}/deb" if [ "$XBPS_TARGET_MACHINE" = "x86_64" ]; then _arch=x86-64 distfiles="${_disturi}/x86_64/LibreOffice_${version}_Linux_${_arch}_deb.tar.gz" checksum=9accb8f6a3be10b2a60911282f8fb5414c12a411f9737d5850e327e4a77914ec elif [ "$XBPS_TARGET_MACHINE" = "i686" ]; then _arch=x86 distfiles="${_disturi}/x86/LibreOffice_${version}_Linux_${_arch}_deb.tar.gz" checksum=2dd305f8907ee4f21b631fa028e037fe35b82d6728798104f9b6734cec8f472e fi only_for_archs="i686 x86_64" wrksrc="LibreOffice_${version}.2_Linux_${_arch}_deb" makedepends="libpng-devel" do_install() { cd DEBS mkdir -p ${DESTDIR} for a in *.deb ; do ar x $a tar xzpvf data.tar.gz -C ${DESTDIR} done # hack the missing shlibs! p=/opt/libreoffice4.1/program/ d=${DESTDIR}/$p rm -f ${d}/libpng12.so.0 ln -fs /usr/lib/libpng.so ${d}/libpng12.so.0 cd ${d} hack_shlibs=" libjawt.so libkdeui.so.4 libkdecore.so.4 libqt-mt.so.3 libkabc.so.1 libkio.so.4 libgnomevfs-2.so.0 libsqlite3.so " for a in ${hack_shlibs} ; do ln -fs ./libpng12.so.0 ./${a} done # install symlinked programs to /usr programs="soffice scalc swriter simpress sdraw sbase" mkdir -p ${DESTDIR}/usr/bin for a in ${programs} ; do ln -fs ${p}/$a ${DESTDIR}/usr/bin/$a done } libreoffice-bin_package() { pkg_install() { vmove all } }