mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-17 14:42:01 +01:00
27 lines
631 B
Plaintext
27 lines
631 B
Plaintext
# Maintainer: Drew DeVault <sir@cmpwn.com>
|
|
pkgname=aerc
|
|
pkgver=0.1.0
|
|
pkgrel=0
|
|
pkgdesc="an email client for your terminal"
|
|
url="https://aerc-mail.org"
|
|
arch="all"
|
|
license="MIT"
|
|
depends="less python3 py3-colorama"
|
|
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="d77558b43370f8befccc397f49046f4c5710fc4b3f0aa1c869595924ed53d8a2dc73761bf5f4c5c7cbb0e659469aef521f0b7e0a2f4544a5f8100e30a58c897e aerc-0.1.0.tar.gz"
|