mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-04-30 10:01:37 +02:00
go recently received a security upgrade to 1.12.8 (f4894bf9) this upgrade fixes various CVEs in go standard libraries, for instance in HTTP/2 functionality. Since go is statically linked packages using this functionality need to be rebuild.
26 lines
609 B
Plaintext
26 lines
609 B
Plaintext
# Maintainer: Drew DeVault <sir@cmpwn.com>
|
|
pkgname=aerc
|
|
pkgver=0.2.1
|
|
pkgrel=1
|
|
pkgdesc="an email client for your terminal"
|
|
url="https://aerc-mail.org"
|
|
arch="all"
|
|
license="MIT"
|
|
depends="less"
|
|
makedepends="go scdoc"
|
|
subpackages="$pkgname-doc"
|
|
source="$pkgname-$pkgver.tar.gz::https://git.sr.ht/~sircmpwn/aerc/archive/$pkgver.tar.gz"
|
|
|
|
build() {
|
|
make PREFIX=/usr
|
|
}
|
|
|
|
check() {
|
|
go test ./...
|
|
}
|
|
|
|
package() {
|
|
make install PREFIX=/usr DESTDIR="$pkgdir"
|
|
}
|
|
sha512sums="8d1903215d654885d5011e0408d3c15d53a3bf9ec7f9f537c9b9b560b2324fb13876ce96da0525f1d0a354e0580ad24ebc5da4f4e623403d31ecde27ee29c3ac aerc-0.2.1.tar.gz"
|