Complete rebranding of all components: - Core miner: xmrig -> miner (binary, version.h, CMakeLists.txt) - Proxy: xmrig-proxy -> miner-proxy - CUDA plugin: xmrig-cuda -> miner-cuda - Heatmap: xmrig-nonces-heatmap -> miner-nonces-heatmap - Go CLI wrapper: miner-cli -> miner-ctrl Vendored XMRig ecosystem into miner/ directory: - miner/core - XMRig CPU/GPU miner - miner/proxy - Stratum proxy - miner/cuda - NVIDIA CUDA plugin - miner/heatmap - Nonce visualization tool - miner/config - Configuration UI - miner/deps - Pre-built dependencies Updated dev fee to use project wallet with opt-out (kMinimumDonateLevel=0) Updated branding to Lethean (domain, copyright, version 0.1.0) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
20 lines
541 B
Bash
Executable file
20 lines
541 B
Bash
Executable file
#!/bin/sh -e
|
|
|
|
OPENSSL_VERSION="1.1.1u"
|
|
|
|
mkdir -p deps
|
|
mkdir -p deps/include
|
|
mkdir -p deps/lib
|
|
|
|
mkdir -p build && cd build
|
|
|
|
wget https://openssl.org/source/old/1.1.1/openssl-${OPENSSL_VERSION}.tar.gz -O openssl-${OPENSSL_VERSION}.tar.gz
|
|
tar -xzf openssl-${OPENSSL_VERSION}.tar.gz
|
|
|
|
cd openssl-${OPENSSL_VERSION}
|
|
./config -no-shared -no-asm -no-zlib -no-comp -no-dgram -no-filenames -no-cms
|
|
make -j$(nproc || sysctl -n hw.ncpu || sysctl -n hw.logicalcpu)
|
|
cp -fr include ../../deps
|
|
cp libcrypto.a ../../deps/lib
|
|
cp libssl.a ../../deps/lib
|
|
cd ..
|