#!/usr/bin/make -f
# Use this script to update the PKGBUILD's list of langpacks.
# This script depends on:
#  - coreutils
#  - pacman
#  - sed

# Variables:
# This is to get it from Debian Sid
debname=iceape-l10n
debver=2.7.4+debian
debrel=2
debrepo=http://ftp.debian.org/debian/pool/main/

pkgver=2.7.4
pkgrel=1

# Guts: ##############################################################

default: PHONY all
all: PHONY
	$(MAKE) clean
	$(MAKE) PKGBUILD
.PRECIOUS: PKGBUILD

PKGBUILD.list: Makefile
	sed \
	  -e 's/@DEBNAME@/$(debname)/' \
	  -e 's/@DEBVER@/$(debver)/' \
	  -e 's/@DEBREL@/$(debrel)/' \
	  -e 's%@DEBREPO@%$(debrepo)%' \
	  -e 's/@PKGVER@/$(pkgver)/' \
	  -e 's/@PKGREL@/$(pkgrel)/' \
	  -e "s/@LANGPACKS@/(phony)/" \
	  -e '/CUT HERE/,$$d' \
	  PKGBUILD.in > $@
	echo 'package() { exit 0; }' >> $@
	makepkg -gp $@ >> $@
langpacks.txt: PKGBUILD.list Makefile
	makepkg -dp $<
	ls src/*/upstream | sed 's/\.xpi//' > $@
PKGBUILD: PKGBUILD.in langpacks.txt Makefile
	sed \
	  -e 's/@DEBNAME@/$(debname)/' \
	  -e 's/@DEBVER@/$(debver)/' \
	  -e 's/@DEBREL@/$(debrel)/' \
	  -e 's%@DEBREPO@%$(debrepo)%' \
	  -e 's/@PKGVER@/$(pkgver)/' \
	  -e 's/@PKGREL@/$(pkgrel)/' \
	  -e "s/@LANGPACKS@/(`xargs echo < langpacks.txt`)/" \
	  -e '/CUT HERE/d' \
	  -e '/md5sums/,$$d' \
	  PKGBUILD.in > $@
	makepkg -dg >> $@

clean: PHONY
	rm -f PKGBUILD.list langpacks.txt

.PHONY: PHONY FORCE