blob: e650a6313cf25487f3f3a70010a9aee7bb570112 (
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
|
# Maintainer: gilcu3
_pkgname=hullcaster
pkgname=$_pkgname-git
pkgver=r327.caf9e5c
pkgrel=1
pkgdesc="Terminal-based TUI podcast manager"
arch=('x86_64' 'i686' 'aarch64')
url="https://github.com/gilcu3/hullcaster"
license=('GPL3')
depends=('sqlite>=3.23.0' 'openssl>=1.1.0')
makedepends=(
'cargo'
'git'
)
options=('!lto')
provides=('hullcaster')
conflicts=('hullcaster')
backup=("etc/${_pkgname}/config.toml")
source=("${_pkgname}::git+https://github.com/gilcu3/${_pkgname}.git#branch=master")
sha256sums=('SKIP')
prepare() {
cd "$_pkgname"
export RUSTUP_TOOLCHAIN=stable
cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
}
build() {
cd "$_pkgname"
export RUSTUP_TOOLCHAIN=stable
export CARGO_TARGET_DIR=target
cargo build --frozen --release
}
check() {
cd "$_pkgname"
export RUSTUP_TOOLCHAIN=stable
cargo test --frozen
}
pkgver() {
cd "$_pkgname"
( set -o pipefail
git describe --long 2>/dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g' ||
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
)
}
package() {
cd "$_pkgname"
install -Dm0755 -t "$pkgdir/usr/bin/" "target/release/$_pkgname"
install -Dm644 ./config.toml "${pkgdir}/etc/${_pkgname}/config.toml"
install -Dm644 ./LICENSE "${pkgdir}/usr/share/licenses/${_pkgname}/LICENSE"
}
|