mirror of
https://github.com/moparisthebest/pacman
synced 2024-10-31 15:45:03 -04:00
c27904661e
Do a sed replacement in-place is not very portable. On Mac OSX and BSDs, the syntax is "sed -i ''" where as with GNU sed the command is "sed -i''" or just "sed -i". This patch detects which command should be used during configure. Credit to Kevin Barry who researched this issue and provided a patch to work around this using temporary backup files. Signed-off-by: Allan McRae <allan@archlinux.org> Signed-off-by: Dan McGee <dan@archlinux.org>
72 lines
2.1 KiB
Makefile
72 lines
2.1 KiB
Makefile
# enforce that all scripts have a --help and --version option
|
|
AUTOMAKE_OPTIONS = std-options
|
|
|
|
bin_SCRIPTS = \
|
|
$(OURSCRIPTS) \
|
|
repo-remove
|
|
|
|
OURSCRIPTS = \
|
|
makepkg \
|
|
pacman-optimize \
|
|
pkgdelta \
|
|
rankmirrors \
|
|
repo-add
|
|
|
|
EXTRA_DIST = \
|
|
makepkg.sh.in \
|
|
pacman-optimize.sh.in \
|
|
pkgdelta.sh.in \
|
|
rankmirrors.py.in \
|
|
repo-add.sh.in
|
|
|
|
# Files that should be removed, but which Automake does not know.
|
|
MOSTLYCLEANFILES = $(bin_SCRIPTS) *.tmp
|
|
|
|
if USE_GIT_VERSION
|
|
GIT_VERSION := $(shell sh -c 'git describe --abbrev=4 | sed s/^v//')-dirty
|
|
REAL_PACKAGE_VERSION = $(GIT_VERSION)
|
|
else
|
|
REAL_PACKAGE_VERSION = $(PACKAGE_VERSION)
|
|
endif
|
|
|
|
#### Taken from the autoconf scripts Makefile.am ####
|
|
edit = sed \
|
|
-e 's|@localedir[@]|$(localedir)|g' \
|
|
-e 's|@sysconfdir[@]|$(sysconfdir)|g' \
|
|
-e 's|@localstatedir[@]|$(localstatedir)|g' \
|
|
-e 's|@prefix[@]|$(prefix)|g' \
|
|
-e 's|@PACKAGE_VERSION[@]|$(REAL_PACKAGE_VERSION)|g' \
|
|
-e 's|@PACKAGE_BUGREPORT[@]|$(PACKAGE_BUGREPORT)|g' \
|
|
-e 's|@PACKAGE_NAME[@]|$(PACKAGE_NAME)|g' \
|
|
-e 's|@DBEXT[@]|$(DBEXT)|g' \
|
|
-e 's|@BUILDSCRIPT[@]|$(BUILDSCRIPT)|g' \
|
|
-e 's|@SIZECMD[@]|$(SIZECMD)|g' \
|
|
-e 's|@SEDINPLACE[@]|$(SEDINPLACE)|g' \
|
|
-e 's|@configure_input[@]|Generated from $@.in; do not edit by hand.|g'
|
|
|
|
## All the scripts depend on Makefile so that they are rebuilt when the
|
|
## prefix etc. changes. Use chmod -w to prevent people from editing the
|
|
## wrong file by accident.
|
|
# two 'test' lines- make sure we can handle both sh and py type scripts
|
|
# third 'test' line- make sure one of the two checks succeeded
|
|
$(OURSCRIPTS): Makefile
|
|
@echo ' ' GEN $@;
|
|
@rm -f $@ $@.tmp
|
|
@test -f $(srcdir)/$@.sh.in && $(edit) $(srcdir)/$@.sh.in >$@.tmp || true
|
|
@test -f $(srcdir)/$@.py.in && $(edit) $(srcdir)/$@.py.in >$@.tmp || true
|
|
@test -f $@.tmp || false
|
|
@chmod +x $@.tmp
|
|
@chmod a-w $@.tmp
|
|
@mv $@.tmp $@
|
|
|
|
makepkg: $(srcdir)/makepkg.sh.in
|
|
pacman-optimize: $(srcdir)/pacman-optimize.sh.in
|
|
pkgdelta: $(srcdir)/pkgdelta.sh.in
|
|
rankmirrors: $(srcdir)/rankmirrors.py.in
|
|
repo-add: $(srcdir)/repo-add.sh.in
|
|
repo-remove: $(srcdir)/repo-add.sh.in
|
|
rm -f repo-remove
|
|
$(LN_S) repo-add repo-remove
|
|
|
|
# vim:set ts=2 sw=2 noet:
|