blob: 19b9596dbcb4348a60f10938ace15fe61ed2b0f4 (
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
|
# Maintainer: Kimiblock Moe
pkgname=portable-packer-git
pkgver=0.1.9.r7.g01193730
pkgrel=1
pkgdesc="Packaging utility for Portable"
arch=("x86_64")
url="https://github.com/Kimiblock/stashpak"
license=("GPL-3.0-or-later")
depends=("glibc" coreutils desktop-file-utils git)
provides+=(portable-packer)
makedepends=('go' 'git')
backup=()
source=("source::git+https://github.com/Kimiblock/portable-packer.git")
sha256sums=('SKIP')
conflicts+=("portable<14.99")
function prepare() {
cd source
}
function pkgver() {
cd source
git describe --long --tags --abbrev=8 | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
function build() {
cd source
go build -trimpath -buildmode=pie -mod=readonly -modcacherw -ldflags "-linkmode external -extldflags \"${LDFLAGS}\""
}
function check() {
cd source
go test ./...
}
function package() {
install -vDm755 "${srcdir}/source/packer" "${pkgdir}/usr/bin/portable-packer"
}
|