blob: 2b9a68be9bfa30d9fdc9935ee37f4f3e8514b419 (
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
|
# Maintainer: taotieren <admin@taotieren.com>
pkgname=linglong-tools-git
pkgver=2.2.1.r6.ge8650d5
pkgrel=1
pkgdesc='A command line helper for linglong.'
arch=($CARCH)
url='https://github.com/myml/linglong-tools'
license=('MIT')
provides=(
${pkgname%-git}
)
conflicts=(
${pkgname%-git}
)
replaces=()
depends=(
sh
glibc
linyaps
)
makedepends=(
git
go
pkgconf
)
# checkdepends=(
# apt
# )
optdepends=()
backup=(etc/${pkgname%-git}.conf)
source=(
"${pkgname}::git+${url}.git"
"${pkgname%-git}.conf"
"${pkgname%-git}.sh"
)
sha256sums=('SKIP'
'ca5310a6046c27fde5d5ef3751bcfd62b13c6ac0fcce929fc852dd0533aa8786'
'a8c629db431fad5da26cca63fb511d965f153a409b541520352eac8f283dc6de')
pkgver() {
cd "${srcdir}/${pkgname}"
(
set -o pipefail
git describe --long --tag --abbrev=7 2>/dev/null | sed 's/^v//g;s/\([^-]*-g\)/r\1/;s/-/./g' ||
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short=7 HEAD)"
)
}
prepare() {
git -C "${srcdir}/${pkgname}" clean -dfx
}
build() {
cd "${srcdir}"/${pkgname}/
export CGO_CPPFLAGS="${CPPFLAGS}"
export CGO_CFLAGS="${CFLAGS}"
export CGO_CXXFLAGS="${CXXFLAGS}"
export CGO_LDFLAGS="${LDFLAGS}"
export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external -mod=readonly -modcacherw"
export GO111MODULE=on
export GOPROXY=https://goproxy.cn,direct
mkdir -pv build/
go build -o build
}
# check() {
# cd "${srcdir}"/${pkgname}/
# make test
# }
package() {
cd "${srcdir}"/${pkgname}
install -Dm755 build/${pkgname%-git} -t "${pkgdir}/usr/bin/"
install -Dm644 "README.md" -t "${pkgdir}/usr/share/doc/${pkgname}/"
install -Dm644 "LICENSE" -t "${pkgdir}/usr/share/licenses/${pkgname}/"
install -Dm644 "${srcdir}/${pkgname%-git}.conf" -t "${pkgdir}/etc/"
install -Dm755 "${srcdir}/${pkgname%-git}.sh" -t "${pkgdir}/etc/profile.d/"
}
|