39 lines
1.3 KiB
Text
39 lines
1.3 KiB
Text
# Template file for 'libreoffice-bin'
|
|
pkgname=libreoffice-bin
|
|
version=4.1.4
|
|
revision=1
|
|
maintainer="pancake <pancake@nopcode.org>"
|
|
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=199f0c572c1a4a77705b3518b3e659194870904bc54903c42b361677f80f4997
|
|
elif [ "$XBPS_TARGET_MACHINE" = "i686" ]; then
|
|
_arch=x86
|
|
distfiles="${_disturi}/x86/LibreOffice_${version}_Linux_${_arch}_deb.tar.gz"
|
|
checksum=05fc65f52aeca01c9d38a6155943029e7e6b8ad5216765f255a8ad466033a36d
|
|
fi
|
|
only_for_archs="i686 x86_64"
|
|
wrksrc="LibreOffice_${version}.2_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/libreoffice4.1/program/$a ${DESTDIR}/usr/bin/$a
|
|
done
|
|
}
|