Added xbps-src and its associated code again.
It's better to keep it outside of XBPS. --HG-- extra : convert_revision : 34f9c316585b972158d6ee55492c02c9bc5d3fcd
This commit is contained in:
21
xbps-src/shutils/Makefile
Normal file
21
xbps-src/shutils/Makefile
Normal file
@@ -0,0 +1,21 @@
|
||||
include ../vars.mk
|
||||
|
||||
.PHONY: all
|
||||
all:
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
|
||||
.PHONY: install
|
||||
install:
|
||||
if [ ! -d $(DESTDIR)$(SHAREDIR) ]; then \
|
||||
install -d $(DESTDIR)$(SHAREDIR); \
|
||||
fi
|
||||
|
||||
for f in *.sh; do \
|
||||
install -m 755 $$f $(DESTDIR)$(SHAREDIR); \
|
||||
done
|
||||
|
||||
.PHONY: uninstall
|
||||
uninstall:
|
||||
-rm -rf $(DESTDIR)$(SHAREDIR)
|
||||
Reference in New Issue
Block a user