summaryrefslogtreecommitdiffstats
path: root/extra/google-chrome/createSource.htm
diff options
context:
space:
mode:
authortnut <thierryn1 at hispeed dot ch>2010-03-26 21:13:56 +0100
committertnut <thierryn1 at hispeed dot ch>2010-03-26 21:13:56 +0100
commita7155fb0e27ba39395160d3e3e8127b6559063e7 (patch)
tree05e6ba10d62997cb0f5d8d5043514ce71a89bb77 /extra/google-chrome/createSource.htm
parent52bb61b36b430f2a4d7315aeb13bbb7cd39983bd (diff)
downloadnutyx-pakxe-a7155fb0e27ba39395160d3e3e8127b6559063e7.tar.gz
nutyx-pakxe-a7155fb0e27ba39395160d3e3e8127b6559063e7.tar.bz2
nutyx-pakxe-a7155fb0e27ba39395160d3e3e8127b6559063e7.tar.xz
nutyx-pakxe-a7155fb0e27ba39395160d3e3e8127b6559063e7.zip
suppression de google-chrome
Diffstat (limited to 'extra/google-chrome/createSource.htm')
-rw-r--r--extra/google-chrome/createSource.htm54
1 files changed, 0 insertions, 54 deletions
diff --git a/extra/google-chrome/createSource.htm b/extra/google-chrome/createSource.htm
deleted file mode 100644
index 3df70baab..000000000
--- a/extra/google-chrome/createSource.htm
+++ /dev/null
@@ -1,54 +0,0 @@
-#!/bin/bash
-
-. PKGBUILD
-
-# see http://src.chromium.org/svn/trunk/src/tools/export_tarball/export_tarball.py
-nonessential_dirs=(
- 'src/chrome/test/data'
- 'src/chrome/tools/test/reference_build'
- 'src/gears/binaries'
- 'src/net/data/cache_tests'
- 'src/o3d/documentation'
- 'src/o3d/samples'
- 'src/third_party/lighttpd'
- 'src/third_party/WebKit/LayoutTests'
- 'src/webkit/data/layout_tests'
- 'src/webkit/tools/test/reference_build'
-)
-
-current=$(pwd)
-tmp=$(mktemp -d)
-mkdir -p $tmp/chromium-$pkgver
-cd $tmp/chromium-$pkgver
-
-# this should be updated to a more recent revision on major updates
-svn co -r38382 -q http://src.chromium.org/svn/trunk/tools/depot_tools/ depot_tools
-
-export PATH=./depot_tools/:$PATH
-gclient.py config http://src.chromium.org/svn/releases/$pkgver
-sed -e '15i\ "src/third_party/WebKit/LayoutTests": None,' \
- -e '15i\ "src/chrome/tools/test/reference_build": None,' \
- -e '15i\ "src/third_party/ffmpeg/binaries/chromium/linux/ia32": None,' \
- -e '15i\ "src/third_party/ffmpeg/binaries/chromium/linux/ia32_dbg": None,' \
- -e '15i\ "src/third_party/ffmpeg/binaries/chromium/linux/x64": None,' \
- -e '15i\ "src/third_party/ffmpeg/binaries/chromium/linux/x64_dbg": None,' \
- -i .gclient
-gclient.py sync --force --nohooks
-
-svnversion src > src/build/LASTCHANGE.in
-
-for i in ${nonessential_dirs[@]}; do
- rm -rf $i
-done
-
-find . -name '.svn' -type d -exec rm -rf {} \;
-find . -iname '*.dll' -delete
-find . -iname '*.exe' -delete
-find . -iname '*.o' -delete
-find . -iname '*.nexe' -delete
-
-cd ..
-bsdtar cJf $current/chromium-$pkgver.tar.xz chromium-$pkgver
-cd $current
-
-rm -rf $tmp