blob: a9a83b1fac4c3bbbdeae848acccb963bfbe625fa (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
# Maintainer: Chocobo1 <chocobo1 AT archlinux DOT net>
pkgname=soft-serve-git
pkgver=0.5.4.r1.gdb3bc9b
pkgrel=1
pkgdesc="A tasty, self-hostable Git server for the command line"
arch=('i686' 'x86_64')
url="https://github.com/charmbracelet/soft-serve"
license=('MIT')
depends=('glibc')
makedepends=('git' 'go')
provides=("soft-serve=$pkgver")
conflicts=('soft-serve')
backup=('etc/soft-serve.conf')
source=("git+https://github.com/charmbracelet/soft-serve.git"
"soft-serve.conf::https://gitlab.archlinux.org/archlinux/packaging/packages/soft-serve/-/raw/main/soft-serve.conf"
"systemd.service::https://gitlab.archlinux.org/archlinux/packaging/packages/soft-serve/-/raw/main/systemd.service"
"sysusers.conf::https://gitlab.archlinux.org/archlinux/packaging/packages/soft-serve/-/raw/main/sysusers.conf"
"tmpfiles.conf::https://gitlab.archlinux.org/archlinux/packaging/packages/soft-serve/-/raw/main/tmpfiles.conf")
sha256sums=('SKIP'
'SKIP'
'SKIP'
'SKIP'
'SKIP')
export CGO_CPPFLAGS="${CPPFLAGS}"
export CGO_CFLAGS="${CFLAGS}"
export CGO_CXXFLAGS="${CXXFLAGS}"
export CGO_LDFLAGS="${LDFLAGS}"
export GOFLAGS="-buildmode=pie -ldflags=-linkmode=external -trimpath -mod=readonly -modcacherw"
pkgver() {
cd "soft-serve"
_tag=$(git tag -l --sort -v:refname | sed '/rc[0-9]*/d' | head -n1)
_rev=$(git rev-list --count $_tag..HEAD)
_hash=$(git rev-parse --short HEAD)
printf "%s.r%s.g%s" "$_tag" "$_rev" "$_hash" | sed 's/^v//'
}
build() {
cd "soft-serve"
go build \
./cmd/...
}
check() {
cd "soft-serve"
go test \
./...
}
package() {
cd "soft-serve"
install -Dm755 "soft" -t "$pkgdir/usr/bin"
install -Dm644 "$srcdir/systemd.service" "$pkgdir/usr/lib/systemd/system/soft-serve.service"
install -Dm644 "$srcdir/sysusers.conf" "$pkgdir/usr/lib/sysusers.d/soft-serve.conf"
install -Dm644 "$srcdir/tmpfiles.conf" "$pkgdir/usr/lib/tmpfiles.d/soft-serve.conf"
install -Dm644 "$srcdir/soft-serve.conf" -t "$pkgdir/etc"
install -Dm644 "cmd/soft/soft.1" -t "$pkgdir/usr/share/man/man1"
install -Dm644 "README.md" -t "$pkgdir/usr/share/doc/soft-serve"
install -Dm644 "LICENSE" -t "$pkgdir/usr/share/licenses/soft-serve"
}
|