dasman 75b18d684e event_graph: use millis for events timestamp, bump the versions of darkirc and taud and are changed slightly to accordigly interact with both old and new versions 1 rok temu
..
config 7266011ec1 replace ircd with darkirc 2 lat temu
proof cbd120da96 darkirc: Preliminary RLN code layout 2 lat temu
script 2285e82989 set default nick for each weechat session 1 rok temu
src 75b18d684e event_graph: use millis for events timestamp, bump the versions of darkirc and taud and are changed slightly to accordigly interact with both old and new versions 1 rok temu
.gitignore fbcebe5e43 chore: updated some .gitignore files 2 lat temu
Cargo.toml 75b18d684e event_graph: use millis for events timestamp, bump the versions of darkirc and taud and are changed slightly to accordigly interact with both old and new versions 1 rok temu
Makefile 6de436658b darkirc: switch recommendation from docker to podman for android builds 2 lat temu
README.md ae3c67a7e0 replace ircd with darkirc throughout the codebase 2 lat temu
android.Dockerfile 7b0513589d darkirc: use vendored sqlite and deprecate self-compiled sqlcipher. 1 rok temu
build.rs 0e6f51e895 chore: Update copyright year in license headers 2 lat temu
darkirc_config.toml cc9d4a87c4 darkirc/darkirc_config: seed fallback torrc onion added 2 lat temu

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