This commit is contained in:
Artur Gurgul 2025-08-01 12:52:57 +02:00
commit b3dba4542f
44 changed files with 1596 additions and 0 deletions

23
recipes/forgejo.yml Normal file
View file

@ -0,0 +1,23 @@
environment:
GO_VERSION: 1.22.3
packages:
- git
- make
- curl
- wget
- gcc
- g++
- npm
- build-essential
repository:
url: https://code.forgejo.org/forgejo/forgejo.git
branch: v12.0.0
steps:
- wget https://go.dev/dl/go$GO_VERSION.linux-amd64.tar.gz
- mkdir .local
- tar -C ./.local -xzf go$GO_VERSION.linux-amd64.tar.gz
- export PATH=$(pwd)/.local/go/bin:$HOME/go/bin:$PATH