# HG changeset patch # User Leonard Ritter # Date 1648841626 25200 # Fri Apr 01 12:33:46 2022 -0700 # Node ID 10a5d4b9c048c014aac54e02cdc8aed229f2e59c # Parent ae966b8e65aa41ef3a44f674efcf6f6fc0bba980 * updated scopes recipe diff --git a/extras/eo/scopes.eo b/extras/eo/scopes.eo --- a/extras/eo/scopes.eo +++ b/extras/eo/scopes.eo @@ -9,9 +9,10 @@ archive-url := "https://hg.sr.ht/~duangle/scopes-binaries/raw/scopes-0.17-glibc_2.31-linux-x86_64.tar.xz" rootdir := (commonpath (extract (download archive-url))) alias "/" rootdir +SUMMARY := "The Scopes Programming Language & Infrastructure" package scopes-unstable - summary "The Scopes Programming Language & Infrastructure" - platform linux windows-mingw + summary SUMMARY + platform linux # force fresh rebuild #version version VERSION := "tip" @@ -42,6 +43,38 @@ "{rootdir}/testing" "{rootdir}/CREDITS.md" "{rootdir}/LICENSE.md" +package scopes-unstable + summary SUMMARY + platform windows-mingw + # force fresh rebuild + #version version + VERSION := "tip" + archive-url := "https://hg.sr.ht/~duangle/scopes/archive/{VERSION}.tar.gz" + rootdir := (commonpath (extract (download archive-url))) + rootdir := + then + cmd := (shell rootdir) + cmd "echo ./bin/eo update | bash" + cmd "echo ./bin/eo install -y majoreo | bash" + doc-cmd := (shell "{rootdir}/doc") + doc-cmd "make html" + cmd "echo ./build.sh | bash" + rootdir + alias "/doc/scopes/html" "{rootdir}/doc/site" + in "/bin" + "{rootdir}/bin/libgcc_s_seh-1.dll" + "{rootdir}/bin/libstdc++-6.dll" + "{rootdir}/bin/libwinpthread-1.dll" + "{rootdir}/bin/scopes.exe" + "{rootdir}/bin/scopesrt.dll" + "{rootdir}/bin/zlib1.dll" + in "/include" + "{rootdir}/include/scopes" + in "/" + "{rootdir}/lib" + "{rootdir}/testing" + "{rootdir}/CREDITS.md" + "{rootdir}/LICENSE.md" package scopes-source-unstable summary "The Scopes Programming Language & Infrastructure (Source)" VERSION := "tip"