blob: d1b017da883752a733c90248599681493a402f8d (
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
|
# Maintainer: zxp19821005 <zxp19821005 at 163 dot com>
pkgname=seekr
pkgver=0.3.1
pkgrel=1
pkgdesc="System search util for linux"
arch=('any')
url="https://github.com/luxluth/seekr"
license=('MIT')
depends=(
'gtk4'
)
makedepends=(
'rust'
'curl'
'git'
'gendesk'
)
source=(
"${pkgname}-${pkgver}::git+${url}#tag=v${pkgver}"
)
sha256sums=('fd1c2410299843be56483c24ec6d55cf91e48096e528cac23d540c9a018badc3')
prepare() {
gendesk -q -f -n \
--pkgname="${pkgname}" \
--pkgdesc="${pkgdesc}" \
--categories="Utility" \
--name="${_pkgname}" \
--exec="${pkgname}"
}
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
export CARGO_HOME="${srcdir}/.cargo"
if [[ "$(curl -s ipinfo.io/country)" == *"CN"* ]]; then
export RUSTUP_DIST_SERVER=https://mirrors.ustc.edu.cn/rust-static
export RUSTUP_UPDATE_ROOT=https://mirrors.ustc.edu.cn/rust-static/rustup
fi
cargo build --release
}
package() {
install -Dm755 "${srcdir}/${pkgname}-${pkgver}/target/release/${pkgname}" -t "${pkgdir}/usr/bin"
install -Dm644 "${srcdir}/${pkgname}.desktop" -t "${pkgdir}/usr/share/applications"
install -Dm644 "${srcdir}/${pkgname}-${pkgver}/LICENSE" -t "${pkgdir}/usr/share/licenses/${pkgname}"
}
|