File: autogen.sh

package info (click to toggle)
solfege 3.23.4-13
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 29,744 kB
  • sloc: python: 26,939; xml: 4,380; ansic: 1,544; sh: 807; makefile: 655; perl: 8; exp: 7
file content (16 lines) | stat: -rwxr-xr-x 426 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash
set -e

if [ "$OSTYPE" = "msys" ]; then
	export GIT=C:/Programfiler/Git/bin/git.exe
	export GIT="C:/Program Files/Git/bin/git.exe"
	export PYTHON=/c/python34/python.exe
	aclocal-1.11
	autoconf
	configure
	$PYTHON -c "import tools.buildutil; tools.buildutil.create_versions_file('$GIT')"
else
	aclocal $ACINCLUDE
	autoconf
        python3 -c "import tools.buildutil; tools.buildutil.create_versions_file('git')"
fi