arti_aur/PKGBUILD

58 lines
1.5 KiB
Bash
Raw Normal View History

2022-09-05 14:10:26 -04:00
# Maintainer: Orhun Parmaksız <orhun@archlinux.org>
2023-11-30 08:53:51 -05:00
# Maintainer: kpcyrd <kpcyrd[at]archlinux[dot]org>
2022-09-05 14:10:26 -04:00
pkgname=arti
2024-05-23 19:01:26 -04:00
pkgver=1.2.3
2022-12-01 10:55:43 -05:00
pkgrel=1
2022-09-05 14:10:26 -04:00
pkgdesc="An implementation of Tor in Rust"
arch=('x86_64')
url="https://gitlab.torproject.org/tpo/core/arti"
2024-02-06 12:38:29 -05:00
license=('MIT' 'Apache-2.0')
2023-11-30 08:53:51 -05:00
depends=(
2024-02-06 12:38:29 -05:00
'gcc-libs'
'glibc'
2023-11-30 08:53:51 -05:00
'liblzma.so'
'libsqlite3.so'
'libssl.so'
)
2022-09-05 14:10:26 -04:00
makedepends=('cargo')
2023-11-30 08:53:51 -05:00
backup=('etc/arti.d/arti.toml')
2022-09-05 14:10:26 -04:00
options=('!lto')
2023-11-30 08:53:51 -05:00
source=("$pkgname-$pkgver.tar.gz::$url/-/archive/$pkgname-v$pkgver/$pkgname-$pkgname-v$pkgver.tar.gz")
2024-05-23 19:01:26 -04:00
sha256sums=('2cfbbc6aa203e0203f773158c4994ee0d55f7213c488281febeef9a15e25aec4')
b2sums=('f4bb9d139942fee587ab4a80eac2a02744b428b3e900b5bb9331896fa8c06600caa0b92c2e125f90b5a2161b61485c6059a43a4c7623aa1290fe7fe610a8eb17')
2022-09-05 14:10:26 -04:00
prepare() {
mv "$pkgname-$pkgname-v$pkgver" "$pkgname-$pkgver"
cd "$pkgname-$pkgver"
2024-02-22 04:12:12 -05:00
cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
2022-09-05 14:10:26 -04:00
}
build() {
cd "$pkgname-$pkgver"
2024-03-04 13:39:35 -05:00
cargo build --release --frozen --features full
2022-09-05 14:10:26 -04:00
}
check() {
cd "$pkgname-$pkgver"
cargo test --frozen
2023-11-30 08:53:51 -05:00
"target/release/$pkgname" --help
2022-09-05 14:10:26 -04:00
}
package() {
cd "$pkgname-$pkgver"
install -Dm 755 "target/release/$pkgname" -t "$pkgdir/usr/bin"
2023-11-30 08:53:51 -05:00
# config
install -Dm 640 crates/arti/src/arti-example-config.toml "$pkgdir/etc/arti.d/arti.toml"
# docs
install -Dm 644 -t "$pkgdir/usr/share/doc/$pkgname" \
README.md \
crates/arti/src/arti-example-config.toml
2022-09-05 14:10:26 -04:00
install -Dm 644 LICENSE-MIT -t "$pkgdir/usr/share/licenses/$pkgname"
}
# vim:set ts=2 sw=2 et: