Init, adding corrade,magnum,magnum-plugins,magnum-integration,magnum-extras, and magnum-examples 2025.47_1
This commit is contained in:
0
common/environment/build-style/.empty
Normal file
0
common/environment/build-style/.empty
Normal file
13
common/environment/build-style/R-cran.sh
Normal file
13
common/environment/build-style/R-cran.sh
Normal file
@@ -0,0 +1,13 @@
|
||||
makedepends+=" R"
|
||||
depends+=" R"
|
||||
create_wrksrc=required
|
||||
build_wrksrc="${pkgname#R-cran-}"
|
||||
|
||||
# default to cran
|
||||
if [ -z "$distfiles" ]; then
|
||||
distfiles=" https://cran.r-project.org/src/contrib/Archive/${pkgname#R-cran-}/${pkgname#R-cran-}_${version//r/-}.tar.gz"
|
||||
case " $XBPS_DISTFILES_MIRROR " in
|
||||
*" https://cran.r-project.org/src/contrib "*) ;;
|
||||
*) XBPS_DISTFILES_MIRROR+=" https://cran.r-project.org/src/contrib" ;;
|
||||
esac
|
||||
fi
|
||||
2
common/environment/build-style/cabal.sh
Normal file
2
common/environment/build-style/cabal.sh
Normal file
@@ -0,0 +1,2 @@
|
||||
hostmakedepends+=" cabal-install git"
|
||||
build_helper+=" haskell"
|
||||
11
common/environment/build-style/cargo.sh
Normal file
11
common/environment/build-style/cargo.sh
Normal file
@@ -0,0 +1,11 @@
|
||||
hostmakedepends+=" cargo"
|
||||
|
||||
if ! [[ "$pkgname" =~ ^cargo-auditable(-bootstrap)?$ ]]; then
|
||||
hostmakedepends+=" cargo-auditable"
|
||||
fi
|
||||
|
||||
if [ "$CROSS_BUILD" ]; then
|
||||
makedepends+=" rust-std"
|
||||
fi
|
||||
|
||||
build_helper+=" rust"
|
||||
11
common/environment/build-style/cmake.sh
Normal file
11
common/environment/build-style/cmake.sh
Normal file
@@ -0,0 +1,11 @@
|
||||
if [ "$CHROOT_READY" ]; then
|
||||
if [ "$pkgname" != cmake-bootstrap ]; then
|
||||
hostmakedepends+=" cmake-bootstrap"
|
||||
fi
|
||||
if [ "${make_cmd:-ninja}" = ninja ]; then
|
||||
hostmakedepends+=" ninja"
|
||||
fi
|
||||
fi
|
||||
|
||||
export CTEST_OUTPUT_ON_FAILURE=TRUE
|
||||
PATH="$PATH:/usr/libexec/xbps-src/bin"
|
||||
8
common/environment/build-style/gem.sh
Normal file
8
common/environment/build-style/gem.sh
Normal file
@@ -0,0 +1,8 @@
|
||||
lib32disabled=yes
|
||||
hostmakedepends+=" ruby"
|
||||
depends+=" ruby"
|
||||
|
||||
# default to rubygems
|
||||
if [ -z "$distfiles" ]; then
|
||||
distfiles="https://rubygems.org/downloads/${pkgname#ruby-}-${version}.gem"
|
||||
fi
|
||||
3
common/environment/build-style/gemspec.sh
Normal file
3
common/environment/build-style/gemspec.sh
Normal file
@@ -0,0 +1,3 @@
|
||||
lib32disabled=yes
|
||||
hostmakedepends+=" ruby-devel"
|
||||
makedepends+=" ruby-devel"
|
||||
55
common/environment/build-style/go.sh
Normal file
55
common/environment/build-style/go.sh
Normal file
@@ -0,0 +1,55 @@
|
||||
if [ -z "$hostmakedepends" -o "${hostmakedepends##*gcc-go-tools*}" ]; then
|
||||
# gc compiler
|
||||
if [ -z "$archs" ]; then
|
||||
archs="aarch64* armv[567]* i686* x86_64* ppc64le* riscv64*"
|
||||
fi
|
||||
hostmakedepends+=" go"
|
||||
nopie=yes
|
||||
else
|
||||
# gccgo compiler
|
||||
if [ -z "$archs" ]; then
|
||||
# we have support for these in our gcc
|
||||
archs="aarch64* armv[567]* i686* x86_64* ppc64* riscv64*"
|
||||
fi
|
||||
if [ "$CROSS_BUILD" ]; then
|
||||
# target compiler to use; otherwise it'll just call gccgo
|
||||
export GCCGO="${XBPS_CROSS_TRIPLET}-gccgo"
|
||||
fi
|
||||
fi
|
||||
|
||||
case "$XBPS_TARGET_MACHINE" in
|
||||
aarch64*) export GOARCH=arm64;;
|
||||
armv5*) export GOARCH=arm; export GOARM=5;;
|
||||
armv6*) export GOARCH=arm; export GOARM=6;;
|
||||
armv7*) export GOARCH=arm; export GOARM=7;;
|
||||
i686*) export GOARCH=386;;
|
||||
x86_64*) export GOARCH=amd64;;
|
||||
ppc64le*) export GOARCH=ppc64le;;
|
||||
ppc64*) export GOARCH=ppc64;;
|
||||
ppc*) export GOARCH=ppc;;
|
||||
mipsel*) export GOARCH=mipsle;;
|
||||
mips*) export GOARCH=mips;;
|
||||
riscv64*) export GOARCH=riscv64;;
|
||||
esac
|
||||
|
||||
export GOPATH="${wrksrc}/_build-${pkgname}-xbps"
|
||||
GOSRCPATH="${GOPATH}/src/${go_import_path}"
|
||||
export CGO_CFLAGS="$CFLAGS"
|
||||
export CGO_CPPFLAGS="$CPPFLAGS"
|
||||
export CGO_CXXFLAGS="$CXXFLAGS"
|
||||
export CGO_LDFLAGS="$LDFLAGS"
|
||||
export CGO_ENABLED="${CGO_ENABLED:-1}"
|
||||
export GO111MODULE=auto
|
||||
export GOTOOLCHAIN="${GOTOOLCHAIN:-local}"
|
||||
export GOPROXY="https://proxy.golang.org,direct"
|
||||
export GOSUMDB="sum.golang.org"
|
||||
|
||||
case "$XBPS_TARGET_MACHINE" in
|
||||
*-musl) export GOCACHE="${XBPS_HOSTDIR}/gocache-muslc" ;;
|
||||
*) export GOCACHE="${XBPS_HOSTDIR}/gocache-glibc" ;;
|
||||
esac
|
||||
|
||||
case "$XBPS_TARGET_MACHINE" in
|
||||
# https://go.dev/cl/421935
|
||||
i686*) export CGO_CFLAGS="$CGO_CFLAGS -fno-stack-protector" ;;
|
||||
esac
|
||||
2
common/environment/build-style/haskell-stack.sh
Normal file
2
common/environment/build-style/haskell-stack.sh
Normal file
@@ -0,0 +1,2 @@
|
||||
hostmakedepends+=" ghc stack"
|
||||
build_helper+=" haskell"
|
||||
4
common/environment/build-style/meson.sh
Normal file
4
common/environment/build-style/meson.sh
Normal file
@@ -0,0 +1,4 @@
|
||||
hostmakedepends+=" meson"
|
||||
build_helper+=" meson"
|
||||
|
||||
export PYTHONUNBUFFERED=1
|
||||
3
common/environment/build-style/perl-ModuleBuild.sh
Normal file
3
common/environment/build-style/perl-ModuleBuild.sh
Normal file
@@ -0,0 +1,3 @@
|
||||
hostmakedepends+=" perl"
|
||||
makedepends+=" perl"
|
||||
lib32disabled=yes
|
||||
4
common/environment/build-style/perl-module.sh
Normal file
4
common/environment/build-style/perl-module.sh
Normal file
@@ -0,0 +1,4 @@
|
||||
hostmakedepends+=" perl"
|
||||
makedepends+=" perl"
|
||||
depends+=" perl"
|
||||
lib32disabled=yes
|
||||
2
common/environment/build-style/python2-module.sh
Normal file
2
common/environment/build-style/python2-module.sh
Normal file
@@ -0,0 +1,2 @@
|
||||
lib32disabled=yes
|
||||
makedepends+=" python"
|
||||
6
common/environment/build-style/python3-module.sh
Normal file
6
common/environment/build-style/python3-module.sh
Normal file
@@ -0,0 +1,6 @@
|
||||
lib32disabled=yes
|
||||
if [ -z "$nopyprovides" ] || [ -z "$noverifypydeps" ]; then
|
||||
hostmakedepends+=" python3-packaging-bootstrap"
|
||||
fi
|
||||
makedepends+=" python3"
|
||||
build_helper+=" python3"
|
||||
6
common/environment/build-style/python3-pep517.sh
Normal file
6
common/environment/build-style/python3-pep517.sh
Normal file
@@ -0,0 +1,6 @@
|
||||
lib32disabled=yes
|
||||
hostmakedepends+=" python3-build python3-installer"
|
||||
if [ -z "$nopyprovides" ] || [ -z "$noverifypydeps" ]; then
|
||||
hostmakedepends+=" python3-packaging-bootstrap"
|
||||
fi
|
||||
build_helper+=" python3"
|
||||
3
common/environment/build-style/raku-dist.sh
Normal file
3
common/environment/build-style/raku-dist.sh
Normal file
@@ -0,0 +1,3 @@
|
||||
depends+=" rakudo"
|
||||
checkdepends+=" perl"
|
||||
hostmakedepends+=" rakudo"
|
||||
1
common/environment/build-style/ruby-module.sh
Normal file
1
common/environment/build-style/ruby-module.sh
Normal file
@@ -0,0 +1 @@
|
||||
lib32disabled=yes
|
||||
1
common/environment/build-style/scons.sh
Normal file
1
common/environment/build-style/scons.sh
Normal file
@@ -0,0 +1 @@
|
||||
hostmakedepends+=" scons"
|
||||
2
common/environment/build-style/texmf.sh
Normal file
2
common/environment/build-style/texmf.sh
Normal file
@@ -0,0 +1,2 @@
|
||||
# python_version isn't needed for everything either
|
||||
python_version=3
|
||||
220
common/environment/build-style/texmf/ownership.txt
Normal file
220
common/environment/build-style/texmf/ownership.txt
Normal file
@@ -0,0 +1,220 @@
|
||||
dvipdfmx/dvipdfmx.cfg texlive
|
||||
dvips/base/color.pro texlive
|
||||
dvips/base/crop.pro texlive
|
||||
dvips/base/finclude.pro texlive
|
||||
dvips/base/hps.pro texlive
|
||||
dvips/base/special.pro texlive
|
||||
dvips/base/texc.pro texlive
|
||||
dvips/base/tex.pro texlive
|
||||
dvips/base/texps.pro texlive
|
||||
dvips/gsftopk/render.ps texlive
|
||||
dvips/xdvi/config.xdvi texlive
|
||||
fonts/cmap/dvipdfmx/EUC-UCS2 texlive
|
||||
fonts/enc/dvips/base/dvips-all.enc texlive
|
||||
fonts/map/dvipdfmx/cid-x.map texlive
|
||||
fonts/map/glyphlist/glyphlist.txt texlive
|
||||
fonts/map/glyphlist/pdfglyphlist.txt texlive
|
||||
psutils/paper.cfg texlive
|
||||
scripts/a2ping/a2ping.pl texlive
|
||||
scripts/accfonts/mkt1font texlive
|
||||
scripts/accfonts/vpl2ovp texlive
|
||||
scripts/accfonts/vpl2vpl texlive
|
||||
scripts/adhocfilelist/adhocfilelist.sh texlive
|
||||
scripts/albatross/albatross.sh texlive
|
||||
scripts/arara/arara.sh texlive
|
||||
scripts/attachfile2/pdfatfi.pl texlive
|
||||
scripts/authorindex/authorindex texlive
|
||||
scripts/bib2gls/bib2gls.sh texlive
|
||||
scripts/bib2gls/convertgls2bib.sh texlive
|
||||
scripts/bibcop/bibcop.pl texlive
|
||||
scripts/bibexport/bibexport.sh texlive
|
||||
scripts/bundledoc/arlatex texlive
|
||||
scripts/bundledoc/bundledoc texlive
|
||||
scripts/cachepic/cachepic.tlu texlive-pictures
|
||||
scripts/checkcites/checkcites.lua texlive
|
||||
scripts/checklistings/checklistings.sh texlive
|
||||
scripts/chklref/chklref.pl texlive
|
||||
scripts/citation-style-language/citeproc-lua.lua texlive
|
||||
scripts/cjk-gs-integrate/cjk-gs-integrate.pl texlive
|
||||
scripts/clojure-pamphlet/pamphletangler texlive
|
||||
scripts/cluttex/cluttex.lua texlive
|
||||
scripts/context/perl/mptopdf.pl texlive
|
||||
scripts/convbkmk/convbkmk.rb texlive-langjapanese
|
||||
scripts/crossrefware/bbl2bib.pl texlive
|
||||
scripts/crossrefware/bibdoiadd.pl texlive
|
||||
scripts/crossrefware/bibmradd.pl texlive
|
||||
scripts/crossrefware/biburl2doi.pl texlive
|
||||
scripts/crossrefware/bibzbladd.pl texlive
|
||||
scripts/crossrefware/ltx2crossrefxml.pl texlive
|
||||
scripts/ctanbib/ctanbib texlive
|
||||
scripts/ctanify/ctanify texlive
|
||||
scripts/ctan-o-mat/ctan-o-mat.pl texlive
|
||||
scripts/ctanupload/ctanupload.pl texlive
|
||||
scripts/de-macro/de-macro texlive
|
||||
scripts/diadia/diadia.lua texlive-humanities
|
||||
scripts/digestif/digestif.texlua texlive
|
||||
scripts/dosepsbin/dosepsbin.pl texlive
|
||||
scripts/dtxgen/dtxgen texlive
|
||||
scripts/dviasm/dviasm.py texlive
|
||||
scripts/dviinfox/dviinfox.pl texlive
|
||||
scripts/epspdf/epspdftk.tcl texlive
|
||||
scripts/epspdf/epspdf.tlu texlive
|
||||
scripts/epstopdf/epstopdf.pl texlive
|
||||
scripts/exceltex/exceltex texlive
|
||||
scripts/fig4latex/fig4latex texlive-pictures
|
||||
scripts/findhyph/findhyph texlive
|
||||
scripts/fontools/afm2afm texlive
|
||||
scripts/fontools/autoinst texlive
|
||||
scripts/fontools/ot2kpx texlive
|
||||
scripts/fragmaster/fragmaster.pl texlive
|
||||
scripts/getmap/getmapdl.lua texlive
|
||||
scripts/git-latexdiff/git-latexdiff texlive
|
||||
scripts/glossaries/makeglossaries-lite.lua texlive
|
||||
scripts/glossaries/makeglossaries texlive
|
||||
scripts/hyperxmp/hyperxmp-add-bytecount.pl texlive
|
||||
scripts/installfont/installfont-tl texlive
|
||||
scripts/jfmutil/jfmutil.pl texlive
|
||||
scripts/ketcindy/ketcindy.pl texlive
|
||||
scripts/kotex-utils/jamo-normalize.pl texlive-langkorean
|
||||
scripts/kotex-utils/komkindex.pl texlive-langkorean
|
||||
scripts/kotex-utils/ttf2kotexfont.pl texlive-langkorean
|
||||
scripts/l3build/l3build.lua texlive-latexextra
|
||||
scripts/latex2man/latex2man texlive
|
||||
scripts/latex2nemeth/latex2nemeth texlive
|
||||
scripts/latexdiff/latexdiff.pl texlive
|
||||
scripts/latexdiff/latexdiff-vc.pl texlive
|
||||
scripts/latexdiff/latexrevise.pl texlive
|
||||
scripts/latexfileversion/latexfileversion texlive
|
||||
scripts/latex-git-log/latex-git-log texlive
|
||||
scripts/latexindent/latexindent.pl texlive
|
||||
scripts/latexmk/latexmk.pl texlive
|
||||
scripts/latexpand/latexpand texlive
|
||||
scripts/latex-papersize/latex-papersize.py texlive
|
||||
scripts/light-latex-make/llmk.lua texlive
|
||||
scripts/lilyglyphs/lily-glyph-commands.py texlive-music
|
||||
scripts/lilyglyphs/lily-image-commands.py texlive-music
|
||||
scripts/lilyglyphs/lily-rebuild-pdfs.py texlive-music
|
||||
scripts/listbib/listbib texlive
|
||||
scripts/listings-ext/listings-ext.sh texlive
|
||||
scripts/ltxfileinfo/ltxfileinfo texlive
|
||||
scripts/ltximg/ltximg.pl texlive
|
||||
scripts/luafindfont/luafindfont.lua texlive
|
||||
scripts/luaotfload/luaotfload-tool.lua texlive
|
||||
scripts/lwarp/lwarpmk.lua texlive
|
||||
scripts/make4ht/make4ht texlive
|
||||
scripts/makedtx/makedtx.pl texlive
|
||||
scripts/match_parens/match_parens texlive
|
||||
scripts/mathspic/mathspic.pl texlive-pictures
|
||||
scripts/mf2pt1/mf2pt1.pl texlive
|
||||
scripts/mkgrkindex/mkgrkindex texlive-langgreek
|
||||
scripts/mkjobtexmf/mkjobtexmf.pl texlive
|
||||
scripts/mkpic/mkpic texlive-pictures
|
||||
scripts/m-tx/m-tx.lua texlive-music
|
||||
scripts/multibibliography/multibibliography.pl texlive
|
||||
scripts/musixtex/musixflx.lua texlive-music
|
||||
scripts/musixtex/musixtex.lua texlive-music
|
||||
scripts/optexcount/optexcount texlive
|
||||
scripts/pagelayout/pagelayoutapi texlive
|
||||
scripts/pagelayout/textestvis texlive
|
||||
scripts/pax/pdfannotextractor.pl texlive
|
||||
scripts/pdfbook2/pdfbook2 texlive
|
||||
scripts/pdfcrop/pdfcrop.pl texlive
|
||||
scripts/pdfjam/pdfjam texlive
|
||||
scripts/pdflatexpicscale/pdflatexpicscale.pl texlive
|
||||
scripts/pdftex-quiet/pdftex-quiet texlive
|
||||
scripts/pdfxup/pdfxup texlive
|
||||
scripts/pedigree-perl/pedigree.pl texlive-pstricks
|
||||
scripts/perltex/perltex.pl texlive
|
||||
scripts/petri-nets/pn2pdf texlive
|
||||
scripts/tikztosvg/tikztosvg texlive-pictures
|
||||
scripts/pfarrei/a5toa4.tlu texlive
|
||||
scripts/pfarrei/pfarrei.tlu texlive
|
||||
scripts/pkfix-helper/pkfix-helper texlive
|
||||
scripts/pkfix/pkfix.pl texlive
|
||||
scripts/pmxchords/pmxchords.lua texlive-music
|
||||
scripts/ps2eps/ps2eps.pl texlive
|
||||
scripts/pst2pdf/pst2pdf.pl texlive-pstricks
|
||||
scripts/pst-pdf/ps4pdf texlive-pstricks
|
||||
scripts/psutils/extractres.pl texlive
|
||||
scripts/psutils/includeres.pl texlive
|
||||
scripts/psutils/psjoin.pl texlive
|
||||
scripts/ptex2pdf/ptex2pdf.lua texlive
|
||||
scripts/ptex-fontmaps/kanji-config-updmap.pl texlive-langjapanese
|
||||
scripts/ptex-fontmaps/kanji-config-updmap-sys.sh texlive-langjapanese
|
||||
scripts/ptex-fontmaps/kanji-config-updmap-user.sh texlive-langjapanese
|
||||
scripts/ptex-fontmaps/kanji-fontmap-creator.pl texlive-langjapanese
|
||||
scripts/purifyeps/purifyeps texlive
|
||||
scripts/pygmentex/pygmentex.py texlive-latexextra
|
||||
scripts/pythontex/depythontex.py texlive
|
||||
scripts/pythontex/pythontex.py texlive
|
||||
scripts/rubik/rubikrotation.pl texlive-games
|
||||
scripts/simpdftex/simpdftex texlive
|
||||
scripts/spix/spix.py texlive
|
||||
scripts/splitindex/splitindex.pl texlive
|
||||
scripts/srcredact/srcredact.pl texlive
|
||||
scripts/sty2dtx/sty2dtx.pl texlive
|
||||
scripts/svn-multi/svn-multi.pl texlive
|
||||
scripts/tex4ebook/tex4ebook texlive
|
||||
scripts/texaccents/texaccents.sno texlive
|
||||
scripts/texcount/texcount.pl texlive
|
||||
scripts/texdef/texdef.pl texlive
|
||||
scripts/texdiff/texdiff texlive
|
||||
scripts/texdirflatten/texdirflatten texlive
|
||||
scripts/texdoc/texdoc.tlu texlive
|
||||
scripts/texdoctk/texdoctk.pl texlive
|
||||
scripts/texfot/texfot.pl texlive
|
||||
scripts/texlive-extra/allcm.sh texlive
|
||||
scripts/texlive-extra/allneeded.sh texlive
|
||||
scripts/texlive-extra/dvi2fax.sh texlive
|
||||
scripts/texlive-extra/dvired.sh texlive
|
||||
scripts/texlive-extra/e2pall.pl texlive
|
||||
scripts/texlive-extra/fontinst.sh texlive
|
||||
scripts/texlive-extra/kpsetool.sh texlive
|
||||
scripts/texlive-extra/kpsewhere.sh texlive
|
||||
scripts/texlive-extra/ps2frag.sh texlive
|
||||
scripts/texlive-extra/pslatex.sh texlive
|
||||
scripts/texlive-extra/rubibtex.sh texlive-langcyrillic
|
||||
scripts/texlive-extra/rumakeindex.sh texlive-langcyrillic
|
||||
scripts/texlive-extra/texconfig-dialog.sh texlive
|
||||
scripts/texlive-extra/texconfig.sh texlive
|
||||
scripts/texlive-extra/texconfig-sys.sh texlive
|
||||
scripts/texlive-extra/texlinks.sh texlive
|
||||
scripts/texlive-extra/xelatex-unsafe.sh texlive
|
||||
scripts/texlive-extra/xetex-unsafe.sh texlive
|
||||
scripts/texlive/fmtutil.pl texlive
|
||||
scripts/texlive/fmtutil-sys.sh texlive
|
||||
scripts/texlive/fmtutil-user.sh texlive
|
||||
scripts/texlive/mktexlsr texlive
|
||||
scripts/texlive/mktexmf texlive
|
||||
scripts/texlive/mktexpk texlive
|
||||
scripts/texlive/mktextfm texlive
|
||||
scripts/texlive/rungs.lua texlive
|
||||
scripts/texliveonfly/texliveonfly.py texlive
|
||||
scripts/texlive/tlmgr.pl texlive
|
||||
scripts/texlive/updmap.pl texlive
|
||||
scripts/texlive/updmap-sys.sh texlive
|
||||
scripts/texlive/updmap-user.sh texlive
|
||||
scripts/texloganalyser/texloganalyser texlive
|
||||
scripts/texlogfilter/texlogfilter texlive
|
||||
scripts/texlogsieve/texlogsieve texlive
|
||||
scripts/texosquery/texosquery-jre5.sh texlive
|
||||
scripts/texosquery/texosquery-jre8.sh texlive
|
||||
scripts/texosquery/texosquery.sh texlive
|
||||
scripts/texplate/texplate.sh texlive
|
||||
scripts/thumbpdf/thumbpdf.pl texlive
|
||||
scripts/tlshell/tlshell.tcl texlive
|
||||
scripts/typeoutfileinfo/typeoutfileinfo.sh texlive
|
||||
scripts/ulqda/ulqda.pl texlive-science
|
||||
scripts/urlbst/urlbst texlive
|
||||
scripts/vpe/vpe.pl texlive
|
||||
scripts/webquiz/webquiz.py texlive
|
||||
scripts/wordcount/wordcount.sh texlive
|
||||
scripts/xindex/xindex.lua texlive
|
||||
scripts/yplan/yplan texlive
|
||||
texconfig/tcfmgr.map texlive
|
||||
texconfig/tcfmgr texlive
|
||||
web2c/fmtutil.cnf texlive
|
||||
web2c/texmf.cnf texlive
|
||||
xdvi/pixmap/toolbar2.xpm texlive
|
||||
xdvi/pixmap/toolbar.xpm texlive
|
||||
xdvi/XDvi texlive
|
||||
11
common/environment/build-style/void-cross.sh
Normal file
11
common/environment/build-style/void-cross.sh
Normal file
@@ -0,0 +1,11 @@
|
||||
# Snapshot tarballs get removed after over a year, we can archive the ones we need in distfiles.
|
||||
case "$XBPS_DISTFILES_FALLBACK" in
|
||||
*"repo-default.voidlinux.org/distfiles"*) ;;
|
||||
*) XBPS_DISTFILES_FALLBACK+=" https://repo-default.voidlinux.org/distfiles" ;;
|
||||
esac
|
||||
|
||||
lib32disabled=yes
|
||||
nopie=yes
|
||||
|
||||
nostrip_files+=" libcaf_single.a libgcc.a libgcov.a libgcc_eh.a
|
||||
libgnarl_pic.a libgnarl.a libgnat_pic.a libgnat.a libgmem.a"
|
||||
1
common/environment/build-style/waf.sh
Normal file
1
common/environment/build-style/waf.sh
Normal file
@@ -0,0 +1 @@
|
||||
hostmakedepends+=" python"
|
||||
1
common/environment/build-style/waf3.sh
Normal file
1
common/environment/build-style/waf3.sh
Normal file
@@ -0,0 +1 @@
|
||||
hostmakedepends+=" python3"
|
||||
1
common/environment/build-style/zig-build.sh
Normal file
1
common/environment/build-style/zig-build.sh
Normal file
@@ -0,0 +1 @@
|
||||
hostmakedepends+=" zig"
|
||||
Reference in New Issue
Block a user