summaryrefslogtreecommitdiff
path: root/~emulatorman/icecat-l10n/Makefile
diff options
context:
space:
mode:
authorcoadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu>2014-02-01 04:45:05 -0200
committercoadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu>2014-02-01 04:45:05 -0200
commit52dd108836155b53454bd95a4a9dbd0c104b79d3 (patch)
treec87f4853b64b5333f7a5aa97bdb5823d34628e21 /~emulatorman/icecat-l10n/Makefile
parent5af0fca430a07bda87310d2ef1a33b6cdb31f732 (diff)
parente2abfecd7d65712f41cd27c8f5ae8d69c478f214 (diff)
downloadabslibre-52dd108836155b53454bd95a4a9dbd0c104b79d3.tar.gz
abslibre-52dd108836155b53454bd95a4a9dbd0c104b79d3.tar.bz2
abslibre-52dd108836155b53454bd95a4a9dbd0c104b79d3.zip
Merge branch 'master' of ssh://projects.parabolagnulinux.org:1863/srv/git/abslibre
Diffstat (limited to '~emulatorman/icecat-l10n/Makefile')
-rw-r--r--~emulatorman/icecat-l10n/Makefile38
1 files changed, 0 insertions, 38 deletions
diff --git a/~emulatorman/icecat-l10n/Makefile b/~emulatorman/icecat-l10n/Makefile
deleted file mode 100644
index d1aaf7bff..000000000
--- a/~emulatorman/icecat-l10n/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=10.0
-pkgver=10.0
-pkgrel=1
-
-# 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