# Maintainer: Gabriel B. Sant'Anna # overall information pkgname=akku pkgdesc="Language package manager for Scheme" url="https://akkuscm.org/" license=('GPL3') arch=('any') # version-specific information pkgrel=3 pkgver=1.0.1 # dependencies are stated in https://gitlab.com/akkuscm/akku/-/blob/master/README.md depends=('git' 'curl' 'guile>=2.2' 'guile<3') makedepends=('pkg-config' 'make') # source URLs for latest versions can be found at https://gitlab.com/akkuscm/akku/-/releases options=(!strip) # disable stripping source=("https://gitlab.com/akkuscm/akku/uploads/7d34b733d5a6518d7842016e878ab8fc/$pkgname-$pkgver.tar.gz" "https://gitlab.com/akkuscm/akku/uploads/d8db897d2f28a112cc941f00711ff7a3/$pkgname-$pkgver.tar.gz.sig") noextract=('$pkgname-$pkgver.tar.gz.sig') # full fingerprint from the output of gpg --list-keys --fingerprint E33E61A2E9B8C3A2 # which is the key found in https://gitlab.com/akkuscm/akku/-/blob/master/README.md # in the case of ... (unknown public key KEY_ID) ==> ERROR: One or more PGP signatures could not be verified! # one must add the key to the user keyring with gpg --recv-key KEY_ID validpgpkeys=('08272FBB54EEB5072D5BA930E33E61A2E9B8C3A2') # Göran Weinholt build() { cd "$pkgname-$pkgver" ./configure --prefix=/usr make } package() { cd "$pkgname-$pkgver" make DESTDIR="$pkgdir/" install } # md5sums generated with updpkgsums md5sums=('72ce46a5bc98cb0c4a549b41dd3f11b2' 'SKIP')