2013-02-04 17:18:07 +01:00
|
|
|
# Template file for 'libreoffice-bin'
|
|
|
|
pkgname=libreoffice-bin
|
2014-02-25 12:38:24 +01:00
|
|
|
version=4.2.1
|
2014-04-04 18:17:25 +02:00
|
|
|
revision=2
|
2014-02-14 13:20:15 +01:00
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2013-02-04 17:18:07 +01:00
|
|
|
homepage="http://www.libreoffice.org/"
|
|
|
|
license="LGPL-3"
|
|
|
|
short_desc="Productivity suite compatible with other major office suites (binary build)"
|
|
|
|
|
2013-05-22 15:07:25 +02:00
|
|
|
_disturi="http://download.documentfoundation.org/libreoffice/stable/${version}/deb"
|
2013-04-13 10:15:49 +02:00
|
|
|
if [ "$XBPS_TARGET_MACHINE" = "x86_64" ]; then
|
2013-02-04 17:18:07 +01:00
|
|
|
_arch=x86-64
|
2013-05-22 15:07:25 +02:00
|
|
|
distfiles="${_disturi}/x86_64/LibreOffice_${version}_Linux_${_arch}_deb.tar.gz"
|
2014-02-25 12:38:24 +01:00
|
|
|
checksum=8f8f9474c2a1007e8293c8bdaaf05b962a34f979a04066c3d5ce9dc732c57906
|
2013-04-13 10:15:49 +02:00
|
|
|
elif [ "$XBPS_TARGET_MACHINE" = "i686" ]; then
|
2013-02-04 17:18:07 +01:00
|
|
|
_arch=x86
|
2013-05-22 15:07:25 +02:00
|
|
|
distfiles="${_disturi}/x86/LibreOffice_${version}_Linux_${_arch}_deb.tar.gz"
|
2014-02-25 12:38:24 +01:00
|
|
|
checksum=672c3d62e5329894675efa9a9a3e4bd4b418c3acdd6af4af556a900f5df004b9
|
2013-02-04 17:18:07 +01:00
|
|
|
fi
|
|
|
|
only_for_archs="i686 x86_64"
|
2014-02-25 12:38:24 +01:00
|
|
|
wrksrc="LibreOffice_${version}.1_Linux_${_arch}_deb"
|
2013-12-19 07:00:10 +01:00
|
|
|
makedepends="shared-mime-info desktop-file-utils hicolor-icon-theme"
|
2014-01-01 16:10:11 +01:00
|
|
|
depends="${makedepends}"
|
|
|
|
allow_unknown_shlibs=yes
|
2013-02-04 17:18:07 +01:00
|
|
|
|
|
|
|
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"
|
2013-12-19 07:00:10 +01:00
|
|
|
vmkdir usr/bin
|
2013-02-04 17:18:07 +01:00
|
|
|
for a in ${programs} ; do
|
2014-02-14 13:20:15 +01:00
|
|
|
ln -fs /opt/libreoffice${version%.*}/program/$a ${DESTDIR}/usr/bin/$a
|
2013-02-04 17:18:07 +01:00
|
|
|
done
|
|
|
|
}
|