6673252679
* Removed the following vars from the conf file: XBPS_BUILDDIR, XBPS_PACKAGESDIR and XBPS_SRCDISTDIR. They are always relative to XBPS_MASTERDIR and cannot be changed. * Removed XBPS_INSTALLDIR, it was unused in the code. * Prepend /tools/bin in PATH for the chroot. * Don't register a repo in the chroot if the XBPS_PREFER_BINPKG_DEPS is not set. --HG-- extra : convert_revision : 4df03ffa64f0bbf81cd1dd0baf38f1b7e4f47549
22 lines
338 B
Makefile
22 lines
338 B
Makefile
include ../vars.mk
|
|
|
|
CONF_FILE = xbps-src.conf
|
|
|
|
.PHONY: all
|
|
all:
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
|
|
.PHONY: install
|
|
install:
|
|
if [ ! -d $(DESTDIR)$(ETCDIR) ]; then \
|
|
install -d $(DESTDIR)$(ETCDIR); \
|
|
fi
|
|
|
|
if [ ! -f $(DESTDIR)$(ETCDIR)/$(CONF_FILE) ]; then \
|
|
install -m 644 $(CONF_FILE) $(DESTDIR)$(ETCDIR); \
|
|
fi
|
|
|
|
.PHONY: uninstall
|
|
uninstall:
|