summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: e1023ae64a8063091df2f8748b9c395719b9138f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Maintainer: mrsyellow <mrsyellow at protonmail dot com>
pkgname=makedepf90
pkgver=2.8.9
pkgrel=1
pkgdesc="Fortran dependency generation tool"
arch=('i686' 'x86_64')
url="https://github.com/amckinstry/makedepf90"
license=('GPL2')
makedepends=('git')
provides=("makedepf90")
source=(git+https://github.com/amckinstry/makedepf90.git#branch=upstream)
md5sums=('SKIP')				

pkgver() {
	cd "$srcdir/makedepf90"
	git describe --tags | sed 's/^upstream\///'
}

build() {
	cd "$srcdir/makedepf90"
	./configure --prefix=/usr
	make
}

package() {
	cd "$srcdir/makedepf90"
	make DESTDIR="$pkgdir/" install
}