void-packages/srcpkgs/libreoffice-bin/template
Juan RP 38670e75d7 libreoffice-bin: update to 4.3.4.
- create a libreoffice symlink, required by lyx (close #635)
- provides/replace libreoffice.
2014-11-14 14:06:03 +01:00

42 lines
1.4 KiB
Plaintext

# Template file for 'libreoffice-bin'
pkgname=libreoffice-bin
version=4.3.4
revision=1
maintainer="Juan RP <xtraeme@gmail.com>"
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=973ffbc6da65cd41ae58550e18269268c1758fa7c3bdfb8c1d5d086db8190ac0
elif [ "$XBPS_TARGET_MACHINE" = "i686" ]; then
_arch=x86
distfiles="${_disturi}/x86/LibreOffice_${version}_Linux_${_arch}_deb.tar.gz"
checksum=141ffdd2ab2d178ef301ee369856cac4fb7455221d3fea2b0dd1f3387c634e38
fi
only_for_archs="i686 x86_64"
wrksrc="LibreOffice_${version}.1_Linux_${_arch}_deb"
depends="shared-mime-info desktop-file-utils hicolor-icon-theme"
provides="libreoffice-${version}_${revision}"
replaces="libreoffice>=0"
allow_unknown_shlibs=yes
do_install() {
cd DEBS
mkdir -p ${DESTDIR}
for a in *.deb ; do
ar x $a
tar xzpvf data.tar.gz -C ${DESTDIR}
done
# install symlinked programs to /usr
programs="soffice scalc swriter simpress sdraw sbase"
vmkdir usr/bin
for a in ${programs} ; do
ln -fs /opt/libreoffice${version%.*}/program/$a ${DESTDIR}/usr/bin/$a
done
ln -s libreoffice${version%.*} ${DESTDIR}/usr/bin/libreoffice
}