petsc-git-PKGBUILD

build template for non-complex PETSC with petsc4py
git clone git://src.adamsgaard.dk/petsc-git-PKGBUILD # fast
git clone https://src.adamsgaard.dk/petsc-git-PKGBUILD.git # slow
Log | Files | Refs Back to index

Makefile (202B)


      1 .POSIX:
      2 
      3 default:
      4 	makepkg -si
      5 
      6 clean:
      7 	makepkg -c
      8 
      9 update:
     10 	makepkg --printsrcinfo > .SRCINFO && git add PKGBUILD .SRCINFO && git commit -a -m 'update version' && git push
     11 
     12 .PHONY: default clean update