Advertisement
Guest User

aur/makedepf90

a guest
Dec 13th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.75 KB | None | 0 0
  1. # Maintainer: mrsyellow <mrsyellow@protonmail.com>
  2. pkgname=makedepf90-git
  3. pkgver=2.8.9.r0.ge641a37
  4. pkgrel=1
  5. pkgdesc="Fortran dependency generation tool"
  6. arch=('any')
  7. url="https://github.com/amckinstry/makedepf90"
  8. license=('GPL2')
  9. makedepends=('git')
  10. provides=("makedepf90")
  11. source=(git+https://github.com/amckinstry/makedepf90.git#branch=upstream)
  12. md5sums=('SKIP')                # skip b.c. loading current git sources
  13.  
  14. pkgver() {
  15.     cd "$srcdir/makedepf90"
  16.   git describe --long --tags | sed 's/^upstream\///;s/\([^-]*-g\)/r\1/;s/-/./g'
  17. }
  18.  
  19. build() {
  20.     cd "$srcdir/makedepf90"
  21.     # ./configure --prefix=/usr
  22.     ./configure --prefix=/home/paul/informatik/aur-makedepf90/tmp
  23.     make
  24. }
  25.  
  26. package() {
  27.     cd "$srcdir/makedepf90"
  28.     make DESTDIR="$pkgdir/" install
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement