PKGBUILD updates and some testing fixes

This commit is contained in:
DarkFeather
2019-04-15 14:53:57 -05:00
parent d4a1aabfdc
commit 4310ab7323
8 changed files with 82 additions and 27 deletions

View File

@@ -1,7 +1,9 @@
compile: c cs java bash php perl python
pkgdirname != basename `git config remote.origin.url` | sed 's/.git$$//'
install: compile
@echo This project cannot be installed.
install: clean
mkdir -p ${pkgdir}/opt/aninix/${pkgdirname}/
rsync -avz --exclude=Makefile --exclude=LICENSE --exclude=.git* --exclude=README . * ${pkgdir}/opt/aninix/${pkgdirname}/
test: compile
python3 -m pytest
@@ -39,5 +41,5 @@ perl: helloworld.pl /usr/bin/perl
python: helloworld.py /usr/bin/python3
#python3 ./helloworld.py
cs: helloworld.cs /usr/bin/mono /usr/bin/mcs
mcs helloworld.cs
cs: HelloWorld.cs /usr/bin/mono /usr/bin/mcs
mcs HelloWorld.cs