# Template file for 'nim' pkgname=nim version=0.19.4 revision=1 _cversion=0.19.0 _nimbleversion=0.9.0 create_wrksrc=yes build_wrksrc=Nim-$version hostmakedepends="ed" depends="gcc" short_desc="The Nim programming language" maintainer="allan " license="MIT" homepage="https://nim-lang.org/" distfiles="https://github.com/nim-lang/Nim/archive/v${version}.tar.gz https://github.com/nim-lang/csources/archive/v${_cversion}.tar.gz>csources-${_cversion}.tar.gz https://github.com/nim-lang/nimble/archive/v${_nimbleversion}.tar.gz>nimble-${_nimbleversion}.tar.gz" checksum="172cf80be15f9cab6d0ba802be98a739dd1083243d4df69e1c2c67c0298db118 68042afae0b24915acac813b52b9ee0a303219e990d3bfa05ca57fb6bbc51578 d02cc0b1787fa30e6d88a1ee7aa067c1555b7763d2716742d1d10132df550456" post_extract() { mv csources-$_cversion $build_wrksrc/csources mkdir $build_wrksrc/dist mv nimble-$_nimbleversion $build_wrksrc/dist/nimble } do_build() { cd csources CC=gcc LD=gcc CFLAGS= LDFLAGS= sh build.sh cd .. ed lib/wrappers/openssl.nim <<-EDIT ,s/versions = "(/versions = "(.46|/ w q EDIT bin/nim c koch ./koch boot -d:release case "$XBPS_TARGET_MACHINE" in aarch64*) _arch=arm64;; arm*) _arch=arm;; ppc64le*) _arch=powerpc64el;; ppc64*) _arch=powerpc64;; esac case "$XBPS_TARGET_MACHINE" in arm*|aarch64*|ppc64*) ed config/nim.cfg <<-EDIT ,s/^arm.linux.gcc.exe .*/arm.linux.gcc.exe = "$CC"/ ,s/^arm.linux.gcc.linkerexe .*/arm.linux.gcc.linkerexe = "$CC"/ a arm64.linux.gcc.exe = "$CC" arm64.linux.gcc.linkerexe = "$CC" powerpc64.linux.gcc.exe = "$CC" powerpc64.linux.gcc.linkerexe = "$CC" powerpc64el.linux.gcc.exe = "$CC" powerpc64el.linux.gcc.linkerexe = "$CC" . w q EDIT bin/nim c -d:release --os:linux --cpu:$_arch --listCmd compiler/nim for _p in \ dist/nimble/src/nimble \ tools/nimgrep \ nimsuggest/nimsuggest \ nimpretty/nimpretty do bin/nim c -d:release --os:linux --cpu:$_arch --listCmd $_p mv $_p bin done ;; *) ./koch tools esac } do_install() { ./koch install ${DESTDIR}/usr/lib if [ "$CROSS_BUILD" ]; then mv compiler/nim ${DESTDIR}/usr/lib/nim/bin/nim fi vmkdir usr/bin vmkdir usr/share/nim ln -sf /usr/lib/nim/bin/nim ${DESTDIR}/usr/bin/nim for _f in nimble nimsuggest nimgrep nimpretty; do chmod 0755 bin/$_f cp bin/$_f ${DESTDIR}/usr/lib/nim/bin ln -sf /usr/lib/nim/bin/$_f ${DESTDIR}/usr/bin/$_f done cp -r doc examples ${DESTDIR}/usr/lib/nim ln -sf /usr/lib/nim/doc ${DESTDIR}/usr/share/nim/doc ln -sf /usr/lib/nim/examples ${DESTDIR}/usr/share/nim/examples vlicense copying.txt }