diff options
author | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2014-02-01 04:11:31 -0200 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2014-02-01 04:11:31 -0200 |
commit | b515cfc1c118e490276f9573c0863d729474edb1 (patch) | |
tree | 03ee8ff3fa5f012d48ad27773cfb81a137642919 /~emulatorman/icecat-l10n/Makefile | |
parent | 64e61b083b1c144cd7e3ef4018f14d7127aa4a24 (diff) | |
download | abslibre-b515cfc1c118e490276f9573c0863d729474edb1.tar.gz abslibre-b515cfc1c118e490276f9573c0863d729474edb1.tar.bz2 abslibre-b515cfc1c118e490276f9573c0863d729474edb1.zip |
remove deprecated packages on ~emulatorman
Diffstat (limited to '~emulatorman/icecat-l10n/Makefile')
-rw-r--r-- | ~emulatorman/icecat-l10n/Makefile | 38 |
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 |