0e5c0a0bbe
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
16 lines
250 B
Makefile
16 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
|