PKGBUILDs/extra/fd/PKGBUILD

52 lines
1.5 KiB
Bash
Raw Permalink Normal View History

2022-09-14 23:58:16 +00:00
# Maintainer: Sven-Hendrik Haase <svenstaro@archlinux.org>
2024-05-07 02:57:25 +00:00
# Maintainer: Daniel M. Capella <polyzen@archlinux.org>
2024-03-13 12:58:11 +00:00
# Contributor: Maxim Baz <archlinux at maximbaz dot com>
2022-09-14 23:58:16 +00:00
# ALARM:
# - compile on aarch64 with JEMALLOC_SYS_WITH_LG_PAGE=16 to support
# systems with 16k or 64k page size
pkgname=fd
2024-08-25 10:29:26 +00:00
pkgver=10.2.0
2024-05-07 02:57:25 +00:00
pkgrel=1
2022-09-14 23:58:16 +00:00
pkgdesc='Simple, fast and user-friendly alternative to find'
arch=('x86_64')
url=https://github.com/sharkdp/fd
2024-03-13 12:58:11 +00:00
license=('MIT' 'Apache-2.0')
2022-09-14 23:58:16 +00:00
depends=('gcc-libs')
makedepends=('rust')
source=("fd-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
2024-08-25 10:29:26 +00:00
sha512sums=('db7a41d0dd448d73a88f7920b0d67d5d99864fef0a7d64a91523a55af9fd745e6520df8aee808f4131a07acd34730571d94a20e1e6aa1336c6f3caaab593d4ab')
2024-05-07 02:57:25 +00:00
prepare() {
cd fd-$pkgver
cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
}
2022-09-14 23:58:16 +00:00
build() {
cd fd-$pkgver
[[ $CARCH == "aarch64" ]] && export JEMALLOC_SYS_WITH_LG_PAGE=16
export CFLAGS+=" -ffat-lto-objects"
2024-05-07 02:57:25 +00:00
cargo build --release --locked --offline
2022-09-14 23:58:16 +00:00
}
check() {
cd fd-$pkgver
2024-05-07 02:57:25 +00:00
cargo test --locked --offline
2022-09-14 23:58:16 +00:00
}
package() {
cd fd-$pkgver
install -Dm755 target/release/fd "$pkgdir"/usr/bin/fd
2022-11-03 12:34:13 +00:00
make completions
install -Dm644 autocomplete/fd.bash "$pkgdir"/usr/share/bash-completion/completions/fd
install -Dm644 autocomplete/fd.fish "$pkgdir"/usr/share/fish/vendor_completions.d/fd.fish
install -Dm644 autocomplete/_fd "$pkgdir"/usr/share/zsh/site-functions/_fd
2022-09-14 23:58:16 +00:00
install -Dm644 doc/fd.1 "$pkgdir"/usr/share/man/man1/fd.1
install -Dm644 LICENSE-MIT "$pkgdir"/usr/share/licenses/fd/LICENSE-MIT
}
# vim:set ts=2 sw=2 et: