22 lines
554 B
Bash
22 lines
554 B
Bash
# Template file for 'pijul'
|
|
pkgname=pijul
|
|
version=0.10.0
|
|
revision=1
|
|
hostmakedepends="cargo pkg-config"
|
|
makedepends="libsodium-devel libressl-devel"
|
|
short_desc="Distributed version control system based on patches"
|
|
maintainer="Toyam Cox <Vaelatern@gmail.com>"
|
|
license="GPL-2"
|
|
homepage="https://pijul.org/"
|
|
distfiles="https://pijul.org/releases/pijul-${version}.tar.gz"
|
|
checksum=da3fcba4ab39a4371cda7273691364c2355c9b216bb7867d92dae5812ebb71d2
|
|
nocross=rustcant
|
|
|
|
do_build() {
|
|
cargo build --release ${makejobs}
|
|
}
|
|
|
|
do_install() {
|
|
vbin target/release/pijul
|
|
}
|