void-packages/xbps-src/common/Makefile
Juan RP 0e5c0a0bbe xbps-src: added code to verify required pkg rundeps.
Every pkg containing shared libs must register them in
common/mapping_shlib_binpkg.txt, this is where the code looks
for transforming required libs to required binpkgs.

The code will also report if a required rundep is missing from
pkg run_depends array and will suggest to add some lines to
the package template.

--HG--
extra : convert_revision : 2d26d45b8e8f62218473abdbed7cc7aab7074e28
2010-01-10 17:09:23 +01:00

17 lines
250 B
Makefile

include ../vars.mk
.PHONY: all
all:
.PHONY: clean
clean:
.PHONY: install
install:
install -d $(DESTDIR)$(SHAREDIR)/common
install -m 644 *.sh *.txt $(DESTDIR)$(SHAREDIR)/common
.PHONY: uninstall
uninstall:
-rm -rf $(DESTDIR)$(SHAREDIR)/common