blob: d4b586d88fe864bcc5c01a46d8c81f960a2479bc (
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
29
30
31
32
33
34
35
36
37
38
39
40
|
# Maintainer: banana-bred <j.forer@posteo.net>
pkgname=fortran-fpm-bin
_name=fpm
pkgver=0.12.0
pkgrel=1
epoch=
pkgdesc='A Fortran package manager and build system'
arch=('x86_64')
url='https://fpm.fortran-lang.org/'
license=('MIT')
groups=()
depends=('git')
makedepends=()
checkdepends=()
optdepends=()
provides=()
conflicts=("${_name}" "${pkgname%-bin}")
replaces=()
backup=()
options=()
install=
changelog=
_suf="-gcc-12"
noextract=()
source=(
"https://github.com/fortran-lang/fpm/releases/download/v${pkgver}/${_name}-${pkgver}-linux-${arch}${_suf}"
"https://raw.githubusercontent.com/fortran-lang/fpm/main/LICENSE"
)
sha256sums=(
576fc54fb829263b32d0e288535a2a3edc9d0478dffec84ba70445446f6d6abf
b7e33601c0130d1a674fcc772ed9b7804460d1896469a5b219ba4062efcd9fb9
)
package() {
install -Dm 755 "${srcdir}/${_name}-${pkgver}-linux-${arch}${_suf}" "${pkgdir}/usr/bin/${_name}"
install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
# vim: ts=2 sw=2 et :
|