parazyd 5ba3786790 darkirc: Update Tor seed nodes 1 yıl önce
..
config 4aad56a780 bin: add default i2p_socks5_proxy to darkirc, darkfid, taud, fud configs and a darkirc config for setting up an i2p node 1 yıl önce
proof 2492203bf5 darkirc: WIP RLNV2-DIFF 1 yıl önce
script 012f5dec23 darkirc/script/bots: fix accidentally messed up telegram bot 1 yıl önce
src c040d9c00f chore: Update crate dependencies 1 yıl önce
.gitignore fbcebe5e43 chore: updated some .gitignore files 2 yıl önce
Cargo.toml c4f3b4eb11 chore: updated sled-overlay to new version 1 yıl önce
Makefile 721502a468 Move from "nightly" toolchain to "stable". 1 yıl önce
README.md ae3c67a7e0 replace ircd with darkirc throughout the codebase 2 yıl önce
android.Dockerfile 0a240bea37 contrib/docker: update Dockerfiles 1 yıl önce
build.rs 604f443fd1 chore: Update license header year 1 yıl önce
darkirc_config.toml 5ba3786790 darkirc: Update Tor seed nodes 1 yıl önce

README.md

darkirc

Check the Installation Guide for more detailed information about the ins and outs of darkirc.

Android build

  1. Install android-ndk
  2. Compile openssl with the Android toolchain
  3. Compile sqlcipher with the Android toolchain and the openssl lib
  4. Compile darkirc

OpenSSL

$ git clone https://github.com/openssl/openssl
$ cd openssl
$ export ANDROID_NDK_ROOT="/opt/android-ndk"
$ export PATH="$ANDROID_NDK_ROOT/toolchains/llvm/prebuilt/linux-x86_64/bin:$PATH"
$ ./Configure android-arm64 -D__ANDROID_API__=32
$ make -j$(nproc)

SQLcipher

$ git clone https://github.com/sqlcipher/sqlcipher
$ cd sqlcipher
$ sed -e 's/strchrnul//' -i configure
$ export ANDROID_NDK_ROOT="/opt/android-ndk"
$ export PATH="$ANDROID_NDK_ROOT/toolchains/llvm/prebuilt/linux-x86_64/bin:$PATH"
$ CC=aarch64-linux-android32-clang \
  CPPFLAGS="-I$PWD/../openssl/include" \
  LDFLAGS="-L$PWD/../openssl" \
  ./configure \
      --host=aarch64-linux-android32 \
      --disable-shared \
      --enable-static \
      --enable-cross-thread-connections \
      --enable-releasemode \
      --disable-tcl
$ make -j$(nproc)
$ ./libtool --mode install install libsqlcipher.la $PWD

DarkIRC

$ make darkirc.android64