File: linux_build.py

package info (click to toggle)
birdfont 2.25.0-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 13,700 kB
  • sloc: ansic: 1,860; python: 1,170; xml: 185; sh: 98; 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")