pantry/projects/scons.org/package.yml
Jacob Heider e99849d878 fix(scons)
closes #4136
2023-11-20 12:49:55 -05:00

37 lines
856 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

distributable:
url: https://downloads.sourceforge.net/project/scons/scons/{{version}}/SCons-{{version}}.tar.gz
strip-components: 1
versions:
github: SCons/scons
dependencies:
python.org: ~3.11
gnu.org/gcc: '>=10' # scons uses `gcc`
build: python-venv.sh {{prefix}}/bin/scons
provides:
- bin/scons
test:
script:
- run: mv $FIXTURE fixture.c
fixture: |
#include <stdio.h>
int main() {
printf("xyz.tea.hello-world");
return 0;
}
# scons doesnt import the external environment
# this means nobody will enjoy using scons with tea so we have to fix that
- run: mv $FIXTURE SConstruct
fixture: |
import os
env = Environment(ENV = os.environ)
env.Program('fixture.c')
- scons --debug=explain
- test $(./fixture) = "xyz.tea.hello-world"