Skip to content
This repository was archived by the owner on Aug 9, 2024. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 4 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,19 +61,12 @@ Then you could just launch it using `webx` in your terminal.
# Download and Compile
## Linux
Install [Rust](https://www.rust-lang.org/tools/install) if you haven't already.
It should work by default, but if you're getting errors such as "missing PC files", you should Google it. Most likely you just have to install a library
It should work by default, but if you're getting errors such as "missing .PC files", you should Google it. Most likely you just have to install a library

## Windows
Welcome to Gaming OS 🙂
1. Download [Rust](https://www.rust-lang.org/tools/install)
2. Download GNU target: `rustup toolchain install stable-gnu && rustup default stable-gnu`
3. Download [MSYS32](https://www.msys2.org/)
4. Open MSYS32 MINGW32
5. Run: `pacman -Syu` just in case.
6. Run `pacman -S mingw-w64-x86_64-toolchain base-devel mingw-w64-x86_64-gtk4 mingw-w64-x86_64-gettext mingw-w64-x86_64-libxml2 mingw-w64-x86_64-librsvg mingw-w64-x86_64-pkgconf mingw-w64-x86_64-gcc mingw-w64-x86_64-libadwaita mingw-w64-x86_64-lua`
7. Go to `Settings` -> `Search` and open `Advanced system settings` -> Click on `Environment variables` (or just search "path")
8. Select `Path` -> Click on `Edit` -> Add the following three entries: `C:\msys64\mingw64\include`, `C:\msys64\mingw64\bin`, and `C:\msys64\mingw64\lib`.
9. Open a terminal in the folder with `napture/`, run `cargo run`.
1. Download this repo as a zip and extract it.
2. Run `windows-compiler.bat`
3. that's it.

## MacOS (Apple Silicon)
1. Install [Rust](https://www.rust-lang.org/tools/install)
Expand Down
76 changes: 76 additions & 0 deletions windows-compiler.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
@echo off
if "%1" == "next" goto :next


:: BatchGotAdmin
:-------------------------------------
REM --> Check for permissions
IF "%PROCESSOR_ARCHITECTURE%" EQU "amd64" (
>nul 2>&1 "%SYSTEMROOT%\SysWOW64\cacls.exe" "%SYSTEMROOT%\SysWOW64\config\system"
) ELSE (
>nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system"
)

REM --> If error flag set, we do not have admin.
if '%errorlevel%' NEQ '0' (
echo Requesting administrative privileges...
goto UACPrompt
) else ( goto gotAdmin )

:UACPrompt
echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs"
set params= %*
echo UAC.ShellExecute "cmd.exe", "/c ""%~s0"" %params:"=""%", "", "runas", 1 >> "%temp%\getadmin.vbs"

"%temp%\getadmin.vbs"
del "%temp%\getadmin.vbs"
exit /B

:gotAdmin
pushd "%CD%"
CD /D "%~dp0"
:--------------------------------------

@echo off
title Bussin Napture Windows Compiler - By NEOAPPS
rustc --version
IF %ERRORLEVEL% NEQ 0 (
echo Rust is not installed. Please install Rust before proceeding. >error.txt
set pc=i686
if "%ProgramFiles(x86)%" == "C:\Program Files (x86)" set pc=x86_64
echo Downloading Rust Installer for your PC...
if %pc% NEQ i686 (
powershell -Command "Invoke-WebRequest -Uri https://static.rust-lang.org/rustup/dist/x86_64-pc-windows-msvc/rustup-init.exe -OutFile rustup-init.exe"
) else (
powershell -Command "Invoke-WebRequest -Uri https://static.rust-lang.org/rustup/dist/i686-pc-windows-msvc/rustup-init.exe -OutFile rustup-init.exe"
)
echo Downloaded rustup-init.exe. Complete installation then open the compiler again. >>error.txt
rustup-init
setx PATH "%PATH%;%USERPROFILE%\.cargo\bin" /m
exit /b
)
rustup toolchain install stable-gnu
rustup default stable-gnu
SET MSYS2_URL=https://github.com/msys2/msys2-installer/releases/download/nightly-x86_64/msys2-base-x86_64-latest.sfx.exe
SET MSYS2_EXE=msys2-installer.exe
if not exist %MSYS2_EXE% powershell -Command "Invoke-WebRequest -Uri %MSYS2_URL% -OutFile %MSYS2_EXE%"
if not exist C:\msys64 %MSYS2_EXE% -y -oC:\
start C:\msys64\msys2_shell.cmd -defterm -here -no-start -mingw32 -c "pacman -Syu --noconfirm && pacman -S --noconfirm mingw-w64-x86_64-toolchain base-devel mingw-w64-x86_64-gtk4 mingw-w64-x86_64-gettext mingw-w64-x86_64-libxml2 mingw-w64-x86_64-librsvg mingw-w64-x86_64-pkgconf mingw-w64-x86_64-gcc mingw-w64-x86_64-libadwaita mingw-w64-x86_64-lua && exit"
pacman -S mingw-w64-x86_64-gtk4 mingw-w64-x86_64-gettext mingw-w64-x86_64-libxml2 mingw-w64-x86_64-librsvg mingw-w64-x86_64-pkgconf mingw-w64-x86_64-gcc
setx PATH "C:\msys64\usr\bin;%PATH%" /m
setx GSK_RENDERER cairo /m
REM if not exist pkg-config_0.26-1_win32.zip powershell -Command "Invoke-WebRequest -Uri http://ftp.gnome.org/pub/gnome/binaries/win32/dependencies/pkg-config_0.26-1_win32.zip -OutFile pkg-config_0.26-1_win32.zip"
REM powershell -Command "Expand-Archive -Path pkg-config_0.26-1_win32.zip"
REM move pkg-config_0.26-1_win32\bin C:\msys64\mingw64
pacman -S mingw-w64-x86_64-gdk-pixbuf2
setx PKG_CONFIG_PATH "C:\msys64\mingw64\lib\pkgconfig" /m


:next
echo Move your 'webx-master' folder here and then
pause
cd webx-master
cd napture
cargo run
echo Job Done.
pause