# Description: DESCRIPTION # URL: https://age-encryption.org/ # Maintainer: Shokara Kou, kou at 13f0 dot net # Depends on: go name=age version=1.0.0 release=1 source=(https://github.com/FiloSottile/age/archive/refs/tags/v$version.tar.gz) build() { cd $name-$version mkdir build go build \ -trimpath \ -buildmode=pie \ -mod=readonly \ -modcacherw \ -o build ./... install -Dm755 build/age -t $PKG/usr/bin/ install -Dm755 build/age-keygen -t $PKG/usr/bin/ install -Dm644 doc/age.1 -t $PKG/usr/share/man/man1/ install -Dm644 doc/age-keygen.1 -t $PKG/usr/share/man/man1/ }