void-packages/srcpkgs/libreoffice-bin/template
2014-02-14 13:20:15 +01:00

40 lines
1.3 KiB
Plaintext

# Template file for 'libreoffice-bin'
pkgname=libreoffice-bin
version=4.2.0
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=3dafbfc87f61da3d06d35aa1a4265386e4dde0bd7c477e8d1ed4d7f40fafe023
elif [ "$XBPS_TARGET_MACHINE" = "i686" ]; then
_arch=x86
distfiles="${_disturi}/x86/LibreOffice_${version}_Linux_${_arch}_deb.tar.gz"
checksum=6d3fb1c2ba881b3f12651c8fde2d6fa4917d5ffa8e7c6beb175b5964e5bc9d13
fi
only_for_archs="i686 x86_64"
wrksrc="LibreOffice_${version}.4_Linux_${_arch}_deb"
makedepends="shared-mime-info desktop-file-utils hicolor-icon-theme"
depends="${makedepends}"
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
}