get-scripts annotate libreoffice @ rev 4

Fix bug 79: get-LibreOffice get-OpenOffice3 packages shoud not have capital letter on their names.
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Feb 16 20:20:05 2014 +0000 (2014-02-16)
parents
children 8b66f6a75a05
rev   line source
pascal@4 1 #!/bin/sh
pascal@4 2 # get-LibreOffice - install LibreOffice excl. KDE/Gnome integration & test suite.
pascal@4 3 #
pascal@4 4 # (C) 2010 SliTaz - GNU General Public License v3.
pascal@4 5 # Author : Ben Arnold <ben@seawolfsanctuary.com>
pascal@4 6 # via : get-OpenOffice3 (Eric Joseph-Alexandre <erjo@slitaz.org>)
pascal@4 7 #
pascal@4 8
pascal@4 9 PACKAGE="LibreOffice"
pascal@4 10 WEB_SITE="http://www.libreoffice.org"
pascal@4 11 CATEGORY="office"
pascal@4 12 SHORT_DESC="Productivity suite."
pascal@4 13 DEPENDS="cups"
pascal@4 14 SUGGESTED="java6-jre"
pascal@4 15 DIR="stable"
pascal@4 16 PREFIX="LibreOffice"
pascal@4 17 SUFFIX="Linux_x86_rpm.tar.gz"
pascal@4 18 WGET_URL="http://download.documentfoundation.org/libreoffice/$DIR"
pascal@4 19
pascal@4 20 VERSION="$(basename $(wget -O - $WGET_URL/ 2> /dev/null | \
pascal@4 21 sed '/href=\"[0-9]/!d;s/.*href=\"//;s/[/\">].*//' | tail -1))"
pascal@4 22 if [ -z "$VERSION" ]; then
pascal@4 23 abort_package "Can't detect an appropriate version. The version numbering or URL may have changed. Aborted."
pascal@4 24 fi
pascal@4 25 VER="${VERSION/\-/}" # without hyphens
pascal@4 26
pascal@4 27
pascal@4 28 TARBALL="${PREFIX}_${VER}_${SUFFIX}"
pascal@4 29
pascal@4 30 for LOC in ${LANG/_/-} ${LANG%_*}; do
pascal@4 31 L_SUFFIX="Linux_x86_rpm_langpack_$LOC.tar.gz"
pascal@4 32 L_TARBALL="${PREFIX}_${VER}_${L_SUFFIX}"
pascal@4 33 LANG_URL="$WGET_URL/${VERSION}/rpm/x86/${L_TARBALL}"
pascal@4 34 busybox wget -s $LANG_URL 2> /dev/null || continue
pascal@4 35 echo "Added $LANG ($LOC)."
pascal@4 36 break
pascal@4 37 done
pascal@4 38 WGET_URL="$WGET_URL/${VERSION}/rpm/x86/${TARBALL}"
pascal@4 39
pascal@4 40 CUR_DIR=$(pwd)
pascal@4 41 TEMP_DIR="/tmp/$PACKAGE.$$"
pascal@4 42 SOURCE_DIR="/tmp/src.$$"
pascal@4 43 EXCLUDE="kde|gnome|test"
pascal@4 44 LOG="/tmp/$(basename $0 .sh).log"
pascal@4 45
pascal@4 46 # Check if we have the tarball before.
pascal@4 47 if [ ! -f $SOURCE_DIR/$TARBALL ]; then
pascal@4 48 echo "Downloading LibreOffice tarball (it's time to have a break)... "
pascal@4 49 # Check if $SOURCE_DIR exist
pascal@4 50 test -d $SOURCE_DIR || mkdir -p $SOURCE_DIR
pascal@4 51 # Get the file.
pascal@4 52 wget -c $WGET_URL -O $SOURCE_DIR/$TARBALL
pascal@4 53 if [ -n $L_TARBALL ] ; then # Are we localised?
pascal@4 54 wget -c $LANG_URL -O $SOURCE_DIR/$L_TARBALL
pascal@4 55 fi
pascal@4 56 status
pascal@4 57 fi
pascal@4 58 if [ ! -f $SOURCE_DIR/$TARBALL ]; then
pascal@4 59 rm -rf $SOURCE_DIR
pascal@4 60 abort_package "Could not download $TARBALL. Exiting."
pascal@4 61 fi
pascal@4 62
pascal@4 63 echo -n "Extracting files (this may take a while): "
pascal@4 64
pascal@4 65 # Creates TEMP_DIR and extract tarball
pascal@4 66 mkdir -p $TEMP_DIR
pascal@4 67 for TB in $TARBALL $L_TARBALL ; do
pascal@4 68 tar xvzf $SOURCE_DIR/$TB -C $TEMP_DIR > $LOG 2>&1 ||
pascal@4 69 abort_package "Failed to extract $TB"
pascal@4 70 done
pascal@4 71
pascal@4 72 # Get version found in archive (often directory is still RC version when final is present)
pascal@4 73 ARCHIVED_VERSION=$(find $TEMP_DIR -type d 2> /dev/null | sed "/$PREFIX/!d;\$!d;s/_/ /g" | awk '{print $2}')
pascal@4 74 echo -n "(found v${ARCHIVED_VERSION})"
pascal@4 75
pascal@4 76 # Consolidate localisations into main package
pascal@4 77 if [ -n $L_TARBALL ] ; then # Are we localised?
pascal@4 78 TARBALL_NAME="${TARBALL/.tar.gz/}"
pascal@4 79 L_TARBALL_NAME="${L_TARBALL/.tar.gz/}"
pascal@4 80 mv -f $TEMP_DIR/${L_TARBALL_NAME/$VERSION/$ARCHIVED_VERSION}/RPMS/*.rpm $TEMP_DIR/${TARBALL_NAME/$VERSION/$ARCHIVED_VERSION}/RPMS/
pascal@4 81 fi
pascal@4 82 status
pascal@4 83
pascal@4 84 # Extracted pkg can be removed: Save RAM
pascal@4 85 rm -rf $SOURCE_DIR
pascal@4 86
pascal@4 87 # Extract everything from RPMS
pascal@4 88 cd $TEMP_DIR/${TARBALL_NAME/$VERSION/$ARCHIVED_VERSION}/RPMS
pascal@4 89 for i in *.rpm
pascal@4 90 do
pascal@4 91 if (! echo $i | egrep -qi $EXCLUDE); then
pascal@4 92 echo -n "."
pascal@4 93 (rpm2cpio $i | cpio -id >> $LOG 2>&1 ) && rm -f $i
pascal@4 94 fi
pascal@4 95 done
pascal@4 96 rpm2cpio libobasis*-gnome-integration*.rpm | cpio -id >> $LOG 2>&1
pascal@4 97
pascal@4 98 # extracted pkg can be removed: Save RAM
pascal@4 99 rm -f libobasis*.rpm
pascal@4 100
pascal@4 101 status
pascal@4 102 echo -n "Preparing package... "
pascal@4 103
pascal@4 104 # Make the package
pascal@4 105 mkdir -p $PACKAGE-$VERSION/fs/usr/lib $PACKAGE-$VERSION/fs/usr/share
pascal@4 106
pascal@4 107 # use mv instead of 'cp -a' to save RAM
pascal@4 108 mv opt/libreoffice* $PACKAGE-$VERSION/fs/usr/lib/libreoffice
pascal@4 109 mv usr/share/mime $PACKAGE-$VERSION/fs/usr/share
pascal@4 110 mv usr/share/icons $PACKAGE-$VERSION/fs/usr/share
pascal@4 111 mv usr/bin $PACKAGE-$VERSION/fs/usr
pascal@4 112
pascal@4 113 # relocalized libexec directory
pascal@4 114 bin=$(echo $PACKAGE-$VERSION/fs/usr/bin/libreoffice${VERSION%.*})
pascal@4 115 if [ -L $bin ]; then
pascal@4 116 target=$(readlink $bin)
pascal@4 117 rm -f $bin
pascal@4 118 ln -s ${target/opt/usr\/lib\/libreoffice} $bin
pascal@4 119 else
pascal@4 120 sed -i 's#/opt/#/usr/lib/libreoffice/#' $bin
pascal@4 121 fi
pascal@4 122
pascal@4 123 # Create receipt
pascal@4 124 cat > $PACKAGE-$VERSION/receipt <<EOT
pascal@4 125 # SliTaz package receipt.
pascal@4 126
pascal@4 127 PACKAGE="$PACKAGE"
pascal@4 128 VERSION="$VERSION"
pascal@4 129 CATEGORY="$CATEGORY"
pascal@4 130 SHORT_DESC="$SHORT_DESC"
pascal@4 131 WEB_SITE="$WEB_SITE"
pascal@4 132
pascal@4 133 DEPENDS="$DEPENDS"
pascal@4 134 SUGGESTED="$SUGGESTED"
pascal@4 135
pascal@4 136 post_install()
pascal@4 137 {
pascal@4 138 cd \$1/usr/share/applications
pascal@4 139 ln -s /usr/lib/libreoffice*/share/xdg/base.desktop libreoffice-base.desktop
pascal@4 140 ln -s /usr/lib/libreoffice*/share/xdg/impress.desktop libreoffice-impress.desktop
pascal@4 141 ln -s /usr/lib/libreoffice*/share/xdg/writer.desktop libreoffice-writer.desktop
pascal@4 142 ln -s /usr/lib/libreoffice*/share/xdg/calc.desktop libreoffice-calc.desktop
pascal@4 143 ln -s /usr/lib/libreoffice*/share/xdg/math.desktop libreoffice-math.desktop
pascal@4 144 ln -s /usr/lib/libreoffice*/share/xdg/draw.desktop libreoffice-draw.desktop
pascal@4 145 ln -s /usr/lib/libreoffice*/share/xdg/printeradmin.desktop libreoffice-printeradmin.desktop
pascal@4 146 chmod +x /usr/lib/libreoffice*/share/xdg/*.desktop
pascal@4 147
pascal@4 148 cd \$1/usr/bin
pascal@4 149 ln -sf /usr/lib/libreoffice/program/soffice
pascal@4 150 ln -sf /usr/lib/libreoffice/program/soffice libreoffice${VERSION%.*}
pascal@4 151 }
pascal@4 152
pascal@4 153 post_remove()
pascal@4 154 {
pascal@4 155 rm -f \$1/usr/share/applications/libreoffice-*
pascal@4 156 }
pascal@4 157
pascal@4 158 EOT
pascal@4 159 status
pascal@4 160 set +e