From fb94a3798a82f08f2e17c4560fd99389a75c42d0 Mon Sep 17 00:00:00 2001 From: EnumDev Date: Fri, 27 Feb 2026 19:14:07 +0200 Subject: [PATCH] Rebuild package --- pkg.info | 4 +++- source.sh | 5 +++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/pkg.info b/pkg.info index 32ba6e3..3b4e70f 100644 --- a/pkg.info +++ b/pkg.info @@ -1,9 +1,11 @@ name: nim description: Statically typed compiled systems programming language version: 2.2.6 -revision: 1 +revision: 2 url: https://nim-lang.org/ license: MIT +maintainers: + - enumdev@enumerated.dev architecture: any type: source depends: diff --git a/source.sh b/source.sh index 1517d06..7fd28b1 100644 --- a/source.sh +++ b/source.sh @@ -17,20 +17,25 @@ prepare() { # This function is used to compile the source code build() { # Compile nim + echo "Building nim..." sh build.sh # Compile koch + echo "Building koch..." ./bin/nim c -d:release koch ./koch boot -d:release -d:nativeStacktrace -d:useGnuReadline # Compile libraries + echo "Building libraries..." ( cd lib; ../bin/nim c --app:lib -d:createNimRtl -d:release nimrtl.nim ) # Compile tools + echo "Building tools..." ./koch tools ( cd tools; ../bin/nim c -d:release nimgrep.nim ) # Compile nimsuggest + echo "Building nimsuggest..." ./bin/nim c -d:release nimsuggest/nimsuggest.nim }