blob: a928bc87df9939c496f1e242244ff6f1ca1cae07 (
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
# Maintainer: torculus <20175597+torculus@users.noreply.github.com>
# Contributor: George Rawlinson <grawlinson@archlinux.org>
pkgname=shiori
pkgver=1.7.3
pkgrel=1
pkgdesc='Simple bookmark manager built with Go'
arch=('x86_64' 'armv7h' 'aarch64')
url='https://github.com/go-shiori/shiori'
license=('MIT')
provides=('shiori')
conflicts=('shiori-bin')
depends=('glibc')
makedepends=('go')
options=('!lto')
source=(
"${url}/archive/refs/tags/v$pkgver.tar.gz"
'systemd.service'
'sysusers.conf'
'tmpfiles.conf'
)
sha512sums=('7750ffcb0f2cb2a796a317585e5ae32c751f6e33cfdefe7f263a0ffb482ee870efd8a1e9e778daee40aa2c49804108d812bee9fe5c5aa0b5e215fc95133144f4'
'5afa2d8d02b414e106d6fcf41d3820b7c0b6c7fc86d12f5439c5d7330db874c0d58c905f646877b5d8b2bcc1ffc33c24756c8e3269c417f4b2abd185a5408de3'
'23f08378dcd3d40defd969e891a7759a8e59a103b6515d1748da66f1f8eef7a4eff5b02b0f5615a580aa5cde67fcbad98b5c610ed478ee32a4385ad7ee40766d'
'e0c5cae54966ac24c8227f09577ab0e62f9b0ae025b2667791b8ed773fdce36fe4188d0353ef03e365342126ae05b0faa9c31c0bd938fabe3358136eb5ed1281')
b2sums=('a9993d427e74a1a6b2c37bc17ab7359c75891678342681bb04157d6d0ce41f29f5497cb1e33a090b313fa8ecdb9572d89182608706df2737aa69f97559644661'
'675e15e77d7328badaade040af67bbdcc8335de30c4ceef64e60aa761c80c38dc06c3e9cfaca51be6b353b8a2c872c242406ade487c738c50de44e94507ce87a'
'4a0fe59a05aa1275a3e42bf616ef4f9c0e2ca3639a516f6966ef1689ff20f6e84827ca43ab66e15f31c9628c452a274d5a888f45155100b851fdcecd5c327fe7'
'1a119411823ab3f6a49ab66c9df7bcad747d594c95aa96918f3f416481ee791533e67ae9789232e7806bd4178d2af18f88c7cc5a1ac06daa3678c7a37adb175a')
prepare() {
cd "$pkgname-$pkgver"
# create directory for build output
mkdir -p build/
# download dependencies
go mod download
}
build() {
cd "$pkgname-$pkgver"
# set Go flags
export CGO_CFLAGS="${CFLAGS}"
export CGO_CXXFLAGS="${CXXFLAGS}"
export CGO_LDFLAGS="${LDFLAGS} -Wl,-z,shstk"
export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external -mod=readonly -modcacherw"
export GOOS="linux"
go build -o build ./...
# shell completions
for shell in bash fish zsh; do
./build/shiori completion "$shell" > "build/completion-$shell"
done
}
#check() {
# cd "$pkgname-$pkgver"
#
# go test -v ./...
#}
package() {
# systemd integration
install -vDm644 systemd.service "$pkgdir/usr/lib/systemd/system/$pkgname.service"
install -vDm644 sysusers.conf "$pkgdir/usr/lib/sysusers.d/$pkgname.conf"
install -vDm644 tmpfiles.conf "$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf"
cd "$pkgname-$pkgver"
# binary
install -vDm755 -t "$pkgdir/usr/bin" build/shiori
# shell completions
install -vDm644 build/completion-bash "$pkgdir/usr/share/bash-completion/completions/$pkgname"
install -vDm644 build/completion-fish "$pkgdir/usr/share/fish/vendor_completions.d/$pkgname.fish"
install -vDm644 build/completion-zsh "$pkgdir/usr/share/zsh/site-functions/_$pkgname"
# license
install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
}
|