File: linux_build.py

package info (click to toggle)
birdfont 2.29.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 13,932 kB
  • sloc: ansic: 1,916; python: 1,162; xml: 187; sh: 75; makefile: 10
file content (12 lines) | stat: -rwxr-xr-x 334 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/python3
from os import path
from run import run

if not path.isfile('./build/configured'):
	run("""./configure \
			  --valac-flags='--pkg gdk-pixbuf-2.0 --pkg gtk+-3.0' \
			  --cflags='$(pkg-config --cflags gdk-pixbuf-2.0)' \
			  --ldflags='$(pkg-config --libs gdk-pixbuf-2.0)'""")

run('./build.py')		  
print ("Done")