Shifting tracking of package metadata mostly to git; cleaning depends; efficiency update in testing

This commit is contained in:
DarkFeather
2019-05-10 16:21:14 -05:00
parent 7376f12a27
commit 216021b633
5 changed files with 25 additions and 25 deletions

View File

@@ -1,6 +1,8 @@
compile: c cs java bash php perl python
pkgdirname != basename `git config remote.origin.url` | sed 's/.git$$//'
compile: c cs java bash php perl python
@echo Done
install: clean
mkdir -p ${pkgdir}/opt/aninix/${pkgdirname}/
rsync -avzp HelloWorld* ${pkgdir}/opt/aninix/${pkgdirname}/
@@ -8,8 +10,8 @@ install: clean
test: compile
python3 -m pytest
clean:
cat .gitignore | xargs -n 1 rm -Rf
clean:
cat .gitignore | xargs rm -Rf
diff:
@echo Nothing to do.