Add shell utils required by xbps-src.

These files are moved from the GIT repository.

--HG--
extra : convert_revision : xtraeme%40gmail.com-20090818153742-98s9y92f5m19l3c2
This commit is contained in:
Juan RP
2009-08-18 17:37:42 +02:00
parent deedf07d4e
commit 9680251382
25 changed files with 3352 additions and 6 deletions

16
shutils/Makefile Normal file
View File

@@ -0,0 +1,16 @@
include ../vars.mk
.PHONY: all
all:
.PHONY: clean
clean:
install:
if [ ! -d $(DESTDIR)$(SHAREDIR) ]; then \
install -d $(DESTDIR)$(SHAREDIR); \
fi
for f in *.sh; do \
install -m 755 $$f $(DESTDIR)$(SHAREDIR); \
done