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 \
|
|
|
|
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 \
|
|
|
|
rankmirrors.py.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' \
|
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-01-05 23:00:21 -05:00
|
|
|
-e 's|@DBEXT[@]|$(DBEXT)|g' \
|
2008-08-20 00:29:56 -04:00
|
|
|
-e 's|@SIZECMD[@]|$(SIZECMD)|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
|
2007-05-30 11:04:49 -04:00
|
|
|
rm -f $@ $@.tmp
|
2007-07-06 18:43:24 -04:00
|
|
|
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
|
2007-05-30 11:04:49 -04:00
|
|
|
chmod +x $@.tmp
|
|
|
|
chmod a-w $@.tmp
|
|
|
|
mv $@.tmp $@
|
|
|
|
|
2007-07-06 18:43:24 -04:00
|
|
|
makepkg: $(srcdir)/makepkg.sh.in
|
|
|
|
pacman-optimize: $(srcdir)/pacman-optimize.sh.in
|
|
|
|
rankmirrors: $(srcdir)/rankmirrors.py.in
|
|
|
|
repo-add: $(srcdir)/repo-add.sh.in
|
2008-06-14 12:29:29 -04:00
|
|
|
repo-remove: $(srcdir)/repo-add.sh.in
|
2008-06-16 18:09:45 -04:00
|
|
|
ln -sf repo-add repo-remove
|
2007-06-04 17:49:09 -04:00
|
|
|
|
|
|
|
# vim:set ts=2 sw=2 noet:
|