Package Details: fn 0.6.22-3

Git Clone URL: https://aur.archlinux.org/fn.git (read-only, click to copy)
Package Base: fn
Description: fn: a container-native, cloud-agnostic tool for defining serverless functions.
Upstream URL: https://fnproject.io/
Keywords: containers docker serverless
Licenses: Apache
Submitter: willf
Maintainer: willf
Last Packager: willf
Votes: 0
Popularity: 0.000000
First Submitted: 2019-09-18 16:29 (UTC)
Last Updated: 2022-11-04 22:43 (UTC)

Latest Comments

willf commented on 2022-11-04 22:44 (UTC)

Updated to 0.6.22 today.

gleb.zhulik commented on 2022-07-23 18:58 (UTC)

Please, update to the latest version, here is an updated and tested PKGBUILD:

# Maintainer: Will Furnass <will at thearete dot co dot uk>

pkgname='fn'
pkgver='0.6.20'
pkgrel='1'
epoch=
pkgdesc='fn: a container-native, cloud-agnostic tool for defining serverless functions.'
arch=('x86_64')
url='https://fnproject.io/'
license=('Apache')
groups=()
depends=('docker')
makedepends=('go')
source=("https://github.com/fnproject/cli/archive/$pkgver.tar.gz")
noextract=("$pkgver.tar.gz")
sha256sums=('6a1555e31f1403744248eeb1eb07631ec322cfc9594bba8a4e031b381592b9d0')

prepare() {
    tar -zxf ${pkgver}.tar.gz
}

build() {
    cd "cli-$pkgver"
    make -j1
}

package() {
    cd "cli-$pkgver"
    install -Dm755 fn "$pkgdir"/usr/bin/fn
}