A native messaging host application for Browser's Exernal Editor extension.
- GNU/Linux
- Windows (MinGW binaries*)
- macOS (tested on 10.15.6)
- FreeBSD
- Precompiled binaries can be downloaded from SourceForge or from the releases page.
- FreeBSD port.
This RPM repository can be used to install beectl using a package manager such as dnf
, e.g.:
sudo dnf copr enable ruslan-osmanov/beectl
sudo dnf install --refresh beectl
Alternatively, download the file from SourceForge or GitHub, then install it:
rpm -Uvh --nodeps beectl-$VERSION.$ARCH.$RELEASE.rpm
where $VERSION
is the package and release version, $ARCH
is the architecture name, e.g.
rpm -Uvh --nodeps beectl-1.0.0-1.amd64.Release.rpm
dpkg -i beectl-$VERSION.$ARCH.$RELEASE.deb
e.g.
dpkg -i beectl-1.0.0-1.amd64.Release.deb
rpm -e beectl-$VERSION.$ARCH.rpm
where $VERSION
is the package and release version, $ARCH
is the architecture name.
Using apt:
apt purge beectl
Build system is based on CMake toolchains (CMake/Toolchain-*.cmake
) using GCC compiler for GNU/Linux and a MinGW port of GCC for Windows. The host is supposed to be a GNU/Linux system.
./build-linux-amd64.sh -b Release
./build-linux-i386.sh -b Release
./build-linux-amd64.sh -b Release
./build-win-i686.sh -b Release
Build scripts/toolchains for other CPU architectures can be added upon request.
Path to a custom toolchain can be passed to build.sh
script as follows:
./build.sh /path/to/custom-toolchain.cmake -b Release
./build.sh
builds debug version by default (if the build type is not specified with -b
option). Build type can also be passed explicitly using -b
option, e.g.:
./build.sh all -b Debug
(The command above iterates through all
Toolchain-*.cmake
toolchains in the CMake
directory.)
After building the project, run make package
. The command should run CPack with a generator matching the current CMake toolchain (e.g. RPM for GNU/Linux, NSIS for Windows etc.) As a result, a package should be generated in the project root.