include $(dir $(lastword $(MAKEFILE_LIST)))/../../config.mk
include $(topsrcdir)/build-aux/Makefile.head.mk
pkgconfdir = $(sysconfdir)/xbs
pkglibexecdir = $(libexecdir)/xbs

_helpers = archrelease commitpkg
libretools-bins      =
libretools-libexecs  = helper-abs
pots             += $(_helpers)
devtools-files   += $(addsuffix .in,$(_helpers))
std.out_files    += $(_helpers)
std.sys_files    += $(addprefix $(pkglibexecdir)/helper-abs.d/,$(_helpers))

$(outdir)/commitpkg: $(srcdir)/commitpkg.in
	@echo "OUT $@"
	@{ \
		echo '#!/usr/bin/env bash'; \
		echo '. "$$(librelib common)"'; \
		echo '. ./PKGBUILD'; \
		echo 'repo=$$1; arch=$$2;'; \
		sed -n "/== 'any'/,\$$p" $<; \
	} | install -Dm755 /dev/stdin $@

$(DESTDIR)$(pkglibexecdir)/helper-abs.d/%: $(srcdir)/%
	install -Dm755 '$<' '$@'

include $(topsrcdir)/build-aux/Makefile.tail.mk
