2007-05-29 16:53:15 -04:00
|
|
|
# enforce that all scripts have a --help and --version option
|
|
|
|
AUTOMAKE_OPTIONS = std-options
|
2007-02-21 23:36:02 -05:00
|
|
|
|
|
|
|
bin_SCRIPTS = \
|
2008-06-14 12:29:29 -04:00
|
|
|
$(OURSCRIPTS) \
|
|
|
|
repo-remove
|
|
|
|
|
|
|
|
OURSCRIPTS = \
|
2007-02-21 23:36:02 -05:00
|
|
|
makepkg \
|
|
|
|
pacman-optimize \
|
2009-02-25 13:26:31 -05:00
|
|
|
pkgdelta \
|
2007-02-21 23:36:02 -05:00
|
|
|
rankmirrors \
|
2008-06-14 12:29:29 -04:00
|
|
|
repo-add
|
2007-02-21 23:36:02 -05:00
|
|
|
|
2007-05-30 11:04:49 -04:00
|
|
|
EXTRA_DIST = \
|
2007-07-06 18:43:24 -04:00
|
|
|
makepkg.sh.in \
|
|
|
|
pacman-optimize.sh.in \
|
2009-02-25 13:26:31 -05:00
|
|
|
pkgdelta.sh.in \
|
2009-08-09 14:27:40 -04:00
|
|
|
rankmirrors.sh.in \
|
2008-06-14 12:29:29 -04:00
|
|
|
repo-add.sh.in
|
2007-05-30 11:04:49 -04:00
|
|
|
|
|
|
|
# Files that should be removed, but which Automake does not know.
|
|
|
|
MOSTLYCLEANFILES = $(bin_SCRIPTS) *.tmp
|
|
|
|
|
2008-05-31 12:53:51 -04:00
|
|
|
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
|
|
|
|
|
2007-05-30 11:04:49 -04:00
|
|
|
#### Taken from the autoconf scripts Makefile.am ####
|
|
|
|
edit = sed \
|
|
|
|
-e 's|@localedir[@]|$(localedir)|g' \
|
|
|
|
-e 's|@sysconfdir[@]|$(sysconfdir)|g' \
|
2007-06-04 17:35:31 -04:00
|
|
|
-e 's|@localstatedir[@]|$(localstatedir)|g' \
|
2007-05-30 11:04:49 -04:00
|
|
|
-e 's|@prefix[@]|$(prefix)|g' \
|
2010-10-11 19:23:16 -04:00
|
|
|
-e 's|@BASH[@]|$(BASH)|g' \
|
2008-05-31 12:53:51 -04:00
|
|
|
-e 's|@PACKAGE_VERSION[@]|$(REAL_PACKAGE_VERSION)|g' \
|
2007-06-04 17:28:23 -04:00
|
|
|
-e 's|@PACKAGE_BUGREPORT[@]|$(PACKAGE_BUGREPORT)|g' \
|
2007-06-04 17:49:09 -04:00
|
|
|
-e 's|@PACKAGE_NAME[@]|$(PACKAGE_NAME)|g' \
|
2008-12-27 01:35:06 -05:00
|
|
|
-e 's|@BUILDSCRIPT[@]|$(BUILDSCRIPT)|g' \
|
2008-08-20 00:29:56 -04:00
|
|
|
-e 's|@SIZECMD[@]|$(SIZECMD)|g' \
|
2009-04-26 06:58:04 -04:00
|
|
|
-e 's|@SEDINPLACE[@]|$(SEDINPLACE)|g' \
|
2010-06-29 23:29:26 -04:00
|
|
|
-e 's|@DUPATH[@]|$(DUPATH)|g' \
|
2007-05-30 11:04:49 -04:00
|
|
|
-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.
|
2007-07-06 18:43:24 -04:00
|
|
|
# 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
|
2008-06-14 12:29:29 -04:00
|
|
|
$(OURSCRIPTS): Makefile
|
2008-08-23 19:27:01 -04:00
|
|
|
@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 $@
|
2007-05-30 11:04:49 -04:00
|
|
|
|
2007-07-06 18:43:24 -04:00
|
|
|
makepkg: $(srcdir)/makepkg.sh.in
|
|
|
|
pacman-optimize: $(srcdir)/pacman-optimize.sh.in
|
2009-02-25 13:26:31 -05:00
|
|
|
pkgdelta: $(srcdir)/pkgdelta.sh.in
|
2009-08-09 14:27:40 -04:00
|
|
|
rankmirrors: $(srcdir)/rankmirrors.sh.in
|
2007-07-06 18:43:24 -04:00
|
|
|
repo-add: $(srcdir)/repo-add.sh.in
|
2008-06-14 12:29:29 -04:00
|
|
|
repo-remove: $(srcdir)/repo-add.sh.in
|
2009-01-02 23:23:59 -05:00
|
|
|
rm -f repo-remove
|
|
|
|
$(LN_S) repo-add repo-remove
|
2007-06-04 17:49:09 -04:00
|
|
|
|
|
|
|
# vim:set ts=2 sw=2 noet:
|