mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-14 15:50:07 +02:00
x86_64 is used as a baseline: the "x86_64" entry, whatever status it has, is transformed into "all", and then the other entries in ARCHITECTURES either dropped or rearranged appropriately.
99 lines
3.1 KiB
Bash
99 lines
3.1 KiB
Bash
SUMMARY="Modern and safe systems programming language"
|
|
DESCRIPTION="Rust is a systems programming language that runs blazingly fast, \
|
|
prevents almost all crashes*, and eliminates data races."
|
|
HOMEPAGE="https://www.rust-lang.org/"
|
|
COPYRIGHT="2018 The Rust Project Developers"
|
|
LICENSE="MIT"
|
|
REVISION="1"
|
|
|
|
case "$effectiveTargetArchitecture" in
|
|
x86)
|
|
SOURCE_URI="http://dl.rust-on-haiku.com/dist/$portVersion/rust-$portVersion-i686-unknown-haiku.tar.xz"
|
|
CHECKSUM_SHA256="07ef97ebdc5ff062b0f1daeb5865b4b2931cf99bcc2689aa63fd2e0bb44d889c"
|
|
SOURCE_DIR="rust-$portVersion-i686-unknown-haiku"
|
|
;;
|
|
x86_64)
|
|
SOURCE_URI="http://dl.rust-on-haiku.com/dist/$portVersion/rust-$portVersion-x86_64-unknown-haiku.tar.xz"
|
|
CHECKSUM_SHA256="348d9c0c22e44f878fa3073954a8f09d7b0e3a134b871ff7f80fbc6315340bca"
|
|
SOURCE_DIR="rust-$portVersion-x86_64-unknown-haiku"
|
|
;;
|
|
*)
|
|
SOURCE_URI="http://dl.rust-on-haiku.com/dist/$portVersion/rustc-$portVersion-src.tar.xz"
|
|
CHECKSUM_SHA256="573abafaa8fd36cc35e94d411b0c450704d3f8df52027f15eabac1d248241613"
|
|
SOURCE_DIR="rustc-$portVersion-src"
|
|
;;
|
|
esac
|
|
|
|
ARCHITECTURES="all !x86_gcc2 ?x86"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
DISABLE_SOURCE_PACKAGE=yes
|
|
|
|
cargoVersion="0.35.0"
|
|
rlsVersion="1.34.0"
|
|
rustfmtVersion="1.0.3"
|
|
clippyVersion="0.0.212"
|
|
|
|
PROVIDES="
|
|
rust_bin$secondaryArchSuffix = $portVersion
|
|
cmd:rustc$secondaryArchSuffix = $portVersion
|
|
cmd:rustdoc$secondaryArchSuffix = $portVersion
|
|
cmd:rustfmt$secondaryArchSuffix = $portVersion
|
|
cmd:rust_gdb$secondaryArchSuffix = $portVersion
|
|
cmd:rust_lldb$secondaryArchSuffix = $portVersion
|
|
cmd:cargo$secondaryArchSuffix = $cargoVersion
|
|
cmd:cargo_clippy$secondaryArchSuffix = $clippyVersion
|
|
cmd:cargo_fmt$secondaryArchSuffix = $cargoVersion
|
|
cmd:clippy_driver$secondaryArchSuffix = $clippyVersion
|
|
cmd:rls$secondaryArchSuffix = $rlsVersion
|
|
cmd:rustfmt = $rustfmtVersion
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
lib:libcrypto$secondaryArchSuffix
|
|
lib:libcurl$secondaryArchSuffix
|
|
lib:libssl$secondaryArchSuffix
|
|
lib:libz$secondaryArchSuffix
|
|
"
|
|
CONFLICTS="
|
|
rust$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
"
|
|
|
|
relativeInstallDir="develop/tools$secondaryArchSubDir/rust"
|
|
installDir="$prefix/$relativeInstallDir"
|
|
|
|
INSTALL()
|
|
{
|
|
./install.sh \
|
|
--prefix=$installDir \
|
|
--docdir=$developDocDir \
|
|
--mandir=$manDir \
|
|
--sysconfdir=$dataDir \
|
|
--disable-ldconfig
|
|
|
|
# move zsh data to the datadir
|
|
mv $installDir/share/zsh $dataDir
|
|
rm -rf $installDir/share
|
|
|
|
# clean out unneccesary files created by the rust installer
|
|
rm $installDir/lib/rustlib/components
|
|
rm $installDir/lib/rustlib/install.log
|
|
rm $installDir/lib/rustlib/manifest-*
|
|
rm $installDir/lib/rustlib/rust-installer-version
|
|
rm $installDir/lib/rustlib/uninstall.sh
|
|
|
|
# link the binaries in $binDir
|
|
mkdir -p $binDir
|
|
for f in cargo cargo-clippy cargo-fmt clippy-driver rls rust-gdb \
|
|
rust-lldb rustc rustdoc rustfmt; do
|
|
symlinkRelative -sfn $installDir/bin/$f $binDir
|
|
done
|
|
|
|
# make sure runtime_loader can find the libraries in the lib dir relative
|
|
# to the binaries
|
|
symlinkRelative -sfn $installDir/lib $installDir/bin/lib
|
|
}
|