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:
Juan RP
2009-10-18 11:17:26 +02:00
parent 7fbc4b9545
commit 745192ef37
26 changed files with 3867 additions and 0 deletions

21
xbps-src/shutils/Makefile Normal file
View 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)