blob: 6443e01433a5d9bf25d974abe30440d4c1fc7354 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# Maintainer: Nick Johnson <nick@yonson.dev>
# Contributor: Stefan Tatschner <stefan@rumpelsepp.org>
pkgname=alps-mail-git
_pkgname=alps
pkgver=r249.62910a9
pkgrel=2
license=('MIT')
pkgdesc="A simple Webmail in Go"
makedepends=('git' 'go')
arch=('x86_64')
url="https://git.sr.ht/~migadu/alps"
source=("$pkgname::git+https://git.sr.ht/~migadu/alps")
sha256sums=('SKIP')
pkgver() {
cd "$pkgname"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build() {
cd $pkgname
export CGO_LDFLAGS="${LDFLAGS}"
export CGO_CFLAGS="${CFLAGS}"
export CGO_CPPFLAGS="${CPPFLAGS}"
export CGO_CXXFLAGS="${CXXFLAGS}"
export GOFLAGS="-buildmode=pie -trimpath -modcacherw"
go build -o $_pkgname ./cmd/alps
}
package() {
cd $pkgname
install -Dm755 $_pkgname "${pkgdir}"/usr/bin/$_pkgname
mkdir -p "${pkgdir}"/usr/lib/$_pkgname/
cp -ra themes "${pkgdir}"/usr/lib/$_pkgname/
cp -ra plugins "${pkgdir}"/usr/lib/$_pkgname/
}
|