mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-10 11:35:00 -05:00
8679cd68d8
This will replace our current options parser used in pacman-key, makepkg, and ideally elsewhere. It follows heuristics closer to that of GNU getopt long (and thus pacman itself), with the exception that it does not allow for options with optional arguments. Due to the way this parser will be used, this sort of functionality will not be needed. Instead of relying on eval+set, options are normalized into an array, OPTRET, which callers should expect to be populated after returning from parseopts. This avoids problems with quotes and spaces in arguments, assuming that the user quotes properly when passing into the application. A new test harness for parseopts is added in test/scripts. Signed-off-by: Dave Reisner <dreisner@archlinux.org>
49 lines
1.5 KiB
Makefile
49 lines
1.5 KiB
Makefile
SUBDIRS = lib/libalpm src/util src/pacman scripts etc test/pacman test/util test/scripts
|
|
if WANT_DOC
|
|
SUBDIRS += doc
|
|
endif
|
|
|
|
DIST_SUBDIRS = $(SUBDIRS) contrib
|
|
|
|
ACLOCAL_AMFLAGS = -I m4 --install
|
|
|
|
# Make sure we test and build manpages when doing distcheck
|
|
DISTCHECK_CONFIGURE_FLAGS = --enable-doc --disable-git-version
|
|
|
|
# Some files automatically included, so they aren't specified below:
|
|
# AUTHORS, COPYING, NEWS, README
|
|
EXTRA_DIST = HACKING
|
|
|
|
# Sample makepkg prototype files
|
|
pkgdatadir = ${datadir}/${PACKAGE}
|
|
dist_pkgdata_DATA = \
|
|
proto/PKGBUILD.proto \
|
|
proto/PKGBUILD-split.proto \
|
|
proto/proto.install \
|
|
proto/ChangeLog.proto
|
|
|
|
# run the pactest test suite and vercmp tests
|
|
check-local: test/pacman test/scripts test/util src/pacman src/util
|
|
LC_ALL=C $(PYTHON) $(top_srcdir)/test/pacman/pactest.py --debug=1 \
|
|
--test $(top_srcdir)/test/pacman/tests/*.py \
|
|
-p $(top_builddir)/src/pacman/pacman
|
|
$(SH) $(top_srcdir)/test/util/pacsorttest.sh \
|
|
$(top_builddir)/src/util/pacsort
|
|
$(SH) $(top_srcdir)/test/util/vercmptest.sh \
|
|
$(top_builddir)/src/util/vercmp
|
|
$(BASH_SHELL) $(top_srcdir)/test/scripts/parseopts_test.sh \
|
|
$(top_srcdir)/scripts/library/parseopts.sh
|
|
|
|
# create the pacman DB and cache directories upon install
|
|
install-data-local:
|
|
for dir in "$(DESTDIR)$(localstatedir)/lib/pacman" "$(DESTDIR)$(localstatedir)/cache/pacman/pkg"; do \
|
|
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
|
|
done
|
|
|
|
update-po:
|
|
$(MAKE) -C lib/libalpm/po update-po
|
|
$(MAKE) -C scripts/po update-po
|
|
$(MAKE) -C src/pacman/po update-po
|
|
|
|
# vim:set ts=2 sw=2 noet:
|