dasman b3f7a9a876 darkirc: queue user privmsgs and send them once DAG is synced há 2 anos atrás
..
config 7266011ec1 replace ircd with darkirc há 2 anos atrás
proof cbd120da96 darkirc: Preliminary RLN code layout há 2 anos atrás
script d2e705b8cc darkirc: Add "no-autojoin" CAP há 2 anos atrás
src b3f7a9a876 darkirc: queue user privmsgs and send them once DAG is synced há 2 anos atrás
.gitignore 3b84503365 darkirc: Add native Android cross-build instructions há 2 anos atrás
Cargo.toml 27fd3785f8 chore: Update crate dependencies and CI Rust version há 2 anos atrás
Makefile a9a6cb4ef9 darkirc: NickServ account registration há 2 anos atrás
README.md ae3c67a7e0 replace ircd with darkirc throughout the codebase há 2 anos atrás
android.Dockerfile 3e0ddde295 darkirc: fix update line in android.Dockerfile há 2 anos atrás
build.rs 0e6f51e895 chore: Update copyright year in license headers há 2 anos atrás
darkirc_config.toml 4cf4fa93d8 doc: add manual blacklist usage to default config há 2 anos atrás

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