31 lines
768 B
Bash
31 lines
768 B
Bash
# Maintainer: PktSurf <smlinux@pktsurf.in>
|
|
app=cbindgen
|
|
version=0.26.0
|
|
build=1sml
|
|
homepage="https://github.com/eqrion/cbindgen"
|
|
download=""
|
|
desc="Tool for generating Rust headers from C code"
|
|
requires="rust"
|
|
|
|
prepbuilddir() {
|
|
mkandenterbuilddir
|
|
rm -rf $app-$version
|
|
|
|
tar xf $srcdir/$app-$version.tar.?z*
|
|
cd $app-$version
|
|
fixbuilddirpermissions
|
|
}
|
|
|
|
build() {
|
|
RUSTONIG_DYNAMIC_LIBONIG=1 \
|
|
cargo build --release --target $arch-unknown-linux-musl $MAKEFLAGS
|
|
install -Dm 755 target/$arch-unknown-linux-musl/release/cbindgen $pkg/usr/bin/cbindgen
|
|
|
|
cp LICENSE $pkgdocs/
|
|
|
|
mkfinalpkg
|
|
}
|
|
|
|
sha512sums="
|
|
8d3d13cba091fe22f7acc1545e1254d783b452da9a9d0e667e037d81694db860b1ecf564c50136c65dd03a087fed13a81280da51fd91f0b7bc392d347235a7c9 cbindgen-0.26.0.tar.lz
|
|
"
|