get-scripts annotate openoffice3 @ rev 26
Add apk-studio
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Nov 19 13:55:21 2014 +0100 (2014-11-19) |
parents | 2e6fc10e1b24 |
children | 6ca05e6839e1 |
rev | line source |
---|---|
pascal@4 | 1 #!/bin/sh |
pascal@4 | 2 # get-OpenOffice3, install everything for OpenOffice.org exept KDE/Gnome integration and testsuite. |
pascal@4 | 3 # |
pascal@4 | 4 # (C) 2008 SliTaz - GNU General Public License v3. |
pascal@4 | 5 # |
pascal@4 | 6 # Author : Eric Joseph-Alexandre <erjo@slitaz.org> |
pascal@4 | 7 |
pascal@4 | 8 PACKAGE="OpenOffice3" |
pascal@7 | 9 LICENSE="Apache" |
pascal@4 | 10 URL="http://www.openoffice.org" |
pascal@4 | 11 PATTERN="Linux_x86_install-rpm" |
pascal@4 | 12 |
pascal@4 | 13 for MIRROR in \ |
pascal@4 | 14 http://mirror.switch.ch/ftp/mirror/OpenOffice \ |
pascal@4 | 15 http://openoffice.cict.fr \ |
pascal@4 | 16 http://wwwftp.ciril.fr/pub/openoffice \ |
pascal@4 | 17 http://artfiles.org/openoffice.org \ |
pascal@4 | 18 http://vesta.informatik.rwth-aachen.de/ftp/pub/mirror/OpenOffice \ |
pascal@4 | 19 http://ftp.ntua.gr/pub/OpenOffice \ |
pascal@4 | 20 http://ftp.iitm.ac.in/openoffice \ |
pascal@4 | 21 http://www.ring.gr.jp/archives/misc/openoffice \ |
pascal@4 | 22 http://ftp.nluug.nl/pub/office/openoffice \ |
pascal@4 | 23 |
pascal@4 | 24 do |
pascal@4 | 25 wget -O - $MIRROR/ 2> /dev/null | grep -q localized || continue |
pascal@4 | 26 DIR="stable" |
pascal@4 | 27 LOC=$(wget -O - $MIRROR/localized/ 2> /dev/null | \ |
pascal@4 | 28 grep -E ">$LANG/|>${LANG/_/-}/|>${LANG%_*}/" | \ |
pascal@4 | 29 head -1 | sed 's/.*href=\"\(.*\)\/\".*/\1/') |
pascal@4 | 30 [ -n "$LOC" ] && DIR="localized/$LOC" |
pascal@4 | 31 VERSION="$(basename $(wget -O - $MIRROR/$DIR/ 2> /dev/null | grep \ |
pascal@4 | 32 href=\"[0-9] | tail -1 | sed 's/.*href=\"\(.*\)\".*/\1/') 2> /dev/null)" |
pascal@4 | 33 [ -n "$VERSION" ] && break |
pascal@4 | 34 done |
pascal@4 | 35 |
pascal@4 | 36 if [ -z "$VERSION" ]; then |
pascal@4 | 37 abort_package "Can't find VERSION. Abort." |
pascal@4 | 38 fi |
pascal@4 | 39 echo "Selecting $DIR version $VERSION ..." |
pascal@4 | 40 TARBALL="$(wget -O - $MIRROR/$DIR/$VERSION/ \ |
pascal@4 | 41 2> /dev/null | grep $PATTERN | tail -1 | sed 's/.*href=\"\(.*\)\".*/\1/')" |
pascal@4 | 42 echo "Archive is $TARBALL ..." |
pascal@4 | 43 WGET_URL=$MIRROR/$DIR/$VERSION/$TARBALL |
pascal@4 | 44 |
pascal@4 | 45 TEMP_DIR="/tmp/$PACKAGE.$$" |
pascal@4 | 46 CUR_DIR=$(pwd) |
pascal@4 | 47 SOURCE_DIR="/tmp/src.$$" |
pascal@4 | 48 EXCLUDE="kde|gnome|test" |
pascal@4 | 49 LOG="/tmp/$(basename $0 .sh).log" |
pascal@4 | 50 |
pascal@4 | 51 # Check if we have the tarball before. |
pascal@4 | 52 if [ ! -f $SOURCE_DIR/$TARBALL ]; then |
pascal@4 | 53 echo "Downloading OppenOffice.org tarball (it's time to have a break)... " |
pascal@4 | 54 #Check if $SOURCE_DIR exist |
pascal@4 | 55 test -d $SOURCE_DIR || mkdir -p $SOURCE_DIR |
pascal@4 | 56 # Get the file. |
pascal@4 | 57 wget -c $WGET_URL -O $SOURCE_DIR/$TARBALL |
pascal@4 | 58 status |
pascal@4 | 59 fi |
pascal@4 | 60 if [ ! -f $SOURCE_DIR/$TARBALL ]; then |
pascal@4 | 61 rm -rf $SOURCE_DIR |
pascal@4 | 62 abort_package "Could not download $TARBALL. Exiting." |
pascal@4 | 63 fi |
pascal@4 | 64 |
pascal@4 | 65 # Creates TEMP_DIR and extract tarball |
pascal@4 | 66 mkdir -p $TEMP_DIR |
pascal@4 | 67 echo -n "Extract files from archive..." |
pascal@4 | 68 tar xvzf $SOURCE_DIR/$TARBALL -C $TEMP_DIR > $LOG 2>&1 || |
pascal@4 | 69 abort_package "Failed to extract $TARBALL" |
pascal@4 | 70 status |
pascal@4 | 71 |
pascal@4 | 72 # extracted pkg can be removed: Save RAM |
pascal@4 | 73 rm -rf $SOURCE_DIR |
pascal@4 | 74 |
pascal@4 | 75 cd $TEMP_DIR/*/RPMS |
pascal@4 | 76 |
pascal@4 | 77 # Extract everything from RPMS |
pascal@4 | 78 for i in *.rpm |
pascal@4 | 79 do |
pascal@4 | 80 if (! echo $i | egrep -qi $EXCLUDE); then |
pascal@4 | 81 (rpm2cpio $i | cpio -id >> $LOG 2>&1 ) && rm -f $i |
pascal@4 | 82 fi |
pascal@4 | 83 done |
pascal@4 | 84 rpm2cpio desktop-integration/*freedesktop*.rpm | cpio -id >> $LOG 2>&1 |
pascal@4 | 85 |
pascal@4 | 86 # extracted pkg can be removed: Save RAM |
pascal@4 | 87 rm -f desktop-integration/*freedesktop*.rpm |
pascal@4 | 88 |
pascal@4 | 89 |
pascal@4 | 90 # Make the package |
pascal@4 | 91 mkdir -p $PACKAGE-$VERSION/fs/usr/lib/openoffice \ |
pascal@4 | 92 $PACKAGE-$VERSION/fs/usr/share |
pascal@4 | 93 |
pascal@4 | 94 # use mv instead of 'cp -a' to save RAM |
pascal@4 | 95 mv opt/openoffice* $PACKAGE-$VERSION/fs/usr/lib/openoffice |
pascal@4 | 96 mv usr/share/mime $PACKAGE-$VERSION/fs/usr/share |
pascal@4 | 97 mv usr/share/icons $PACKAGE-$VERSION/fs/usr/share |
pascal@4 | 98 mv usr/bin $PACKAGE-$VERSION/fs/usr |
pascal@4 | 99 |
pascal@4 | 100 # relocalized OOo libexec directory |
pascal@4 | 101 sed -i 's#/opt/#/usr/lib/openoffice/#' $PACKAGE-$VERSION/fs/usr/bin/openoffice* |
pascal@4 | 102 |
pascal@4 | 103 # Create receipt |
pascal@4 | 104 cat > $PACKAGE-$VERSION/receipt <<EOT |
pascal@4 | 105 # SliTaz package receipt. |
pascal@4 | 106 |
pascal@4 | 107 PACKAGE="$PACKAGE" |
pascal@4 | 108 VERSION="$VERSION" |
pascal@4 | 109 CATEGORY="office" |
pascal@4 | 110 SHORT_DESC="Productivity suite." |
pascal@4 | 111 DEPENDS="java-jre" |
pascal@4 | 112 WEB_SITE="$URL" |
pascal@4 | 113 |
pascal@4 | 114 post_install() |
pascal@4 | 115 { |
pascal@4 | 116 cd \$1/usr/share/applications |
pascal@4 | 117 ln -s /usr/lib/openoffice/openoffice.org3/share/xdg/base.desktop openoffice.org3-base.desktop |
pascal@4 | 118 ln -s /usr/lib/openoffice/openoffice.org3/share/xdg/impress.desktop openoffice.org3-impress.desktop |
pascal@4 | 119 ln -s /usr/lib/openoffice/openoffice.org3/share/xdg/writer.desktop openoffice.org3-writer.desktop |
pascal@4 | 120 ln -s /usr/lib/openoffice/openoffice.org3/share/xdg/calc.desktop openoffice.org3-calc.desktop |
pascal@4 | 121 ln -s /usr/lib/openoffice/openoffice.org3/share/xdg/math.desktop openoffice.org3-math.desktop |
pascal@4 | 122 ln -s /usr/lib/openoffice/openoffice.org3/share/xdg/draw.desktop openoffice.org3-draw.desktop |
pascal@4 | 123 ln -s /usr/lib/openoffice/openoffice.org3/share/xdg/printeradmin.desktop openoffice.org3-printeradmin.desktop |
pascal@4 | 124 |
pascal@4 | 125 cd \$1/usr/bin |
pascal@4 | 126 ln -sf /usr/lib/openoffice/openoffice.org3/program/soffice |
pascal@4 | 127 } |
pascal@4 | 128 |
pascal@4 | 129 post_remove() |
pascal@4 | 130 { |
pascal@4 | 131 rm -f \$1/usr/share/applications/openoffice.org3-* |
pascal@4 | 132 } |
pascal@4 | 133 |
pascal@4 | 134 EOT |
pascal@4 | 135 |
pascal@4 | 136 fake_install() |
pascal@4 | 137 { |
pascal@4 | 138 mkdir -p $ROOT/var/lib/tazpkg/installed/$PACKAGE |
pascal@4 | 139 echo "00000000000000000000000000000000 $PACKAGE-$VERSION.tazpkg" >> \ |
pascal@4 | 140 $ROOT/var/lib/tazpkg/installed.md5 |
pascal@4 | 141 [ -s $1/description.txt $ROOT/var/lib/tazpkg/installed/$PACKAGE |
pascal@4 | 142 ( cd fs ; find *) | sed 's|^|/|' > \ |
pascal@4 | 143 $ROOT/var/lib/tazpkg/installed/$PACKAGE/files.list |
pascal@4 | 144 if grep -q ^CONFIG_FILES= $1/receipt ; then |
pascal@4 | 145 cd fs |
pascal@4 | 146 find $( . ./receipt ; echo " $CONFIG_FILES" | sed 's| /| |g') |\ |
pascal@4 | 147 cpio -o -H newc | gzip -9 > \ |
pascal@4 | 148 $ROOT/var/lib/tazpkg/installed/$PACKAGE/volatile.cpio.gz |
pascal@4 | 149 for i in $( . ./receipt ; echo $CONFIG_FILES) ; do |
pascal@4 | 150 [ -e $ROOT$i ] && rm -rf .$i |
pascal@4 | 151 done |
pascal@4 | 152 cd .. |
pascal@4 | 153 fi |
pascal@4 | 154 sed -i "s/^PACKAGE=/UNPACKED_SIZE=\"$(du -chs $1 | sed '$!d;s/.total//')\"\n&/" \ |
pascal@4 | 155 $1/receipt |
pascal@4 | 156 cp $1/receipt $ROOT/var/lib/tazpkg/installed/$PACKAGE |
pascal@4 | 157 echo "Compute md5sum..." |
pascal@4 | 158 find fs -type f | xargs md5sum | sed 's| fs/| /|' > \ |
pascal@4 | 159 $ROOT/var/lib/tazpkg/installed/$PACKAGE/md5sum |
pascal@4 | 160 echo "Move files..." |
pascal@4 | 161 ( cd $1/fs ; find ) | while read file ; do |
pascal@4 | 162 [ -e $1/fs/$file -a ! -e $ROOT/$file ] && |
pascal@4 | 163 mv $1/fs/$file $(dirname $ROOT/$file) |
pascal@4 | 164 done |
pascal@4 | 165 } |
pascal@4 | 166 set +e |