summaryrefslogtreecommitdiff
path: root/mozilla-testing/icecat-i18n/Makefile
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2012-03-28 21:50:18 -0400
committerLuke Shumaker <LukeShu@sbcglobal.net>2012-03-28 21:50:18 -0400
commit8b96cc7e213923c90ae8ded2f466808f042ff54f (patch)
tree2fbe06dd6a306b6d60eee145247ac03fbf10f647 /mozilla-testing/icecat-i18n/Makefile
parent7838fd828d70b38ab16538634e5395343c994a61 (diff)
downloadabslibre-8b96cc7e213923c90ae8ded2f466808f042ff54f.tar.gz
abslibre-8b96cc7e213923c90ae8ded2f466808f042ff54f.tar.bz2
abslibre-8b96cc7e213923c90ae8ded2f466808f042ff54f.zip
rm [mozilla-testing]/icecat-i18n, it has been superceded by [libre]/icecat-i18n
Diffstat (limited to 'mozilla-testing/icecat-i18n/Makefile')
-rw-r--r--mozilla-testing/icecat-i18n/Makefile38
1 files changed, 0 insertions, 38 deletions
diff --git a/mozilla-testing/icecat-i18n/Makefile b/mozilla-testing/icecat-i18n/Makefile
deleted file mode 100644
index 237edb616..000000000
--- a/mozilla-testing/icecat-i18n/Makefile
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/usr/bin/make -f
-# Use this script to update the PKGBUILD's list of langpacks.
-# This script depends on:
-# - coreutils
-# - grep
-# - pacman
-# - sed
-# - wget
-
-# Variables:
-_pkgver=9.0
-pkgver=9.0.1
-pkgrel=2
-
-# Guts: ##############################################################
-
-default: PHONY all
-all: PHONY PKGBUILD
-
-index.html: Makefile
- rm -f $@
- wget http://gnuzilla.gnu.org/download/langpacks/${pkgver}/
-langpacks.txt: index.html Makefile
- egrep -o '[^>".]+\.xpi' $< | sort -u | sed 's/\.xpi//' > $@
-PKGBUILD: PKGBUILD.in langpacks.txt Makefile
- sed \
- -e 's/@_PKGVER@/$(_pkgver)/' \
- -e 's/@PKGVER@/$(pkgver)/' \
- -e 's/@PKGREL@/$(pkgrel)/' \
- -e "s/@LANGPACKS@/(`xargs echo < langpacks.txt`)/" \
- -e '/md5sums/,$$d' \
- PKGBUILD.in > $@
- makepkg -dg >> $@
-
-clean: PHONY
- rm -f index.html langpacks.txt *.xpi
-
-.PHONY: PHONY FORCE