wok-undigest rev 960
mozilla-common deleted
author | Dominique Corbex <domcox@slitaz.org> |
---|---|
date | Thu Mar 14 17:51:11 2013 +0100 (2013-03-14) |
parents | c254c74d42d1 |
children | 5cebffa27ab2 |
files | mozilla-common/receipt mozilla-common/stuff/list-common.sh |
line diff
1.1 --- a/mozilla-common/receipt Thu Mar 14 17:50:31 2013 +0100 1.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 1.3 @@ -1,63 +0,0 @@ 1.4 -# SliTaz package receipt. 1.5 - 1.6 -PACKAGE="mozilla-common" 1.7 -VERSION="17.0.4esr" 1.8 -CATEGORY="network" 1.9 -SHORT_DESC="Mozilla common files." 1.10 -MAINTAINER="domcox@slitaz.org" 1.11 -WANTED="firefox" 1.12 -WEB_SITE="http://www.mozilla.org/" 1.13 - 1.14 -# Rules to gen a SliTaz package suitable for Tazpkg. 1.15 -genpkg_rules() 1.16 -{ 1.17 - # common files to firefox/thunderbird.. 1.18 - 1.19 - # dictionaries/en-US.aff 1.20 - # dictionaries/en-US.dic 1.21 - printf "Installing dictionaries" 1.22 - mkdir -p $fs/usr/lib/mozilla-common-$VERSION/dictionaries 1.23 - cp -a $install/usr/lib/firefox-$VERSION/dictionaries \ 1.24 - $fs/usr/lib/mozilla-common-$VERSION 1.25 - status 1.26 - 1.27 - # plugin-container 1.28 - printf "Installing common plugin-container" 1.29 - cp -a $install/usr/lib/firefox-$VERSION/plugin-container \ 1.30 - $fs/usr/lib/mozilla-common-$VERSION 1.31 - status 1.32 - 1.33 - # mozilla-xremote-client 1.34 - printf "Installing common mozilla-xremote-client" 1.35 - cp -a $install/usr/lib/firefox-$VERSION/mozilla-xremote-client \ 1.36 - $fs/usr/lib/mozilla-common-$VERSION 1.37 - status 1.38 - 1.39 - # components/libdbusservice.so 1.40 - # components/libmozgnome.so 1.41 - mkdir -p $fs/usr/lib/mozilla-common-$VERSION/components 1.42 - for file in libdbusservice.so libmozgnome.so; do 1.43 - printf "Installing common components/$file" 1.44 - cp -a $install/usr/lib/firefox-$VERSION/components/$file \ 1.45 - $fs/usr/lib/mozilla-common-$VERSION/components 1.46 - status 1.47 - done 1.48 - 1.49 - # chrome.manifest 1.50 - printf "Installing common chrome.manifest" 1.51 - cp -a $install/usr/lib/firefox-$VERSION/chrome.manifest \ 1.52 - $fs/usr/lib/mozilla-common-$VERSION 1.53 - status 1.54 - 1.55 - # run-mozilla.sh 1.56 - printf "Installing common run-mozilla.sh" 1.57 - cp -a $install/usr/lib/firefox-$VERSION/run-mozilla.sh \ 1.58 - $fs/usr/lib/mozilla-common-$VERSION 1.59 - status 1.60 - 1.61 - # libmozalloc.so 1.62 - printf "Installing common libmozalloc.so" 1.63 - cp -a $install/usr/lib/firefox-$VERSION/libmozalloc.so \ 1.64 - $fs/usr/lib/mozilla-common-$VERSION 1.65 - status 1.66 -}
2.1 --- a/mozilla-common/stuff/list-common.sh Thu Mar 14 17:50:31 2013 +0100 2.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 2.3 @@ -1,17 +0,0 @@ 2.4 -#!/bin/sh 2.5 -# 2.6 -# script to list mozilla common files 2.7 -# 2.8 - 2.9 -. /etc/slitaz/cook.conf 2.10 - 2.11 -. $WOK/thunderbird/receipt 2.12 - 2.13 -cd $WOK/$PACKAGE/install/usr/lib/$PACKAGE-$VERSION 2.14 -for file in $(find $PWD -type f); do 2.15 - file1="$file" 2.16 - file2="$(echo "$file" | sed 's/thunderbird/firefox/g')" 2.17 - diff $file1 $file2 >/dev/null 2>/dev/null 2.18 - [ "$?" = "0" ] && ls -l "$file" 2.19 -done 2.20 -exit 0