jobject-intro.build 313 B

123456789101112131415161718
  1. cd $tmpdir
  2. # Grab sources for gobject introspect
  3. if [ ! -d $gobjectintrosrcdir ]; then
  4. wget $gobjectintromirror/$gobjectintro
  5. tar -xf $gobjectintro
  6. fi
  7. cd $gobjectintrosrcdir
  8. ./configure --prefix=$freondir --disable-static --with-python=python3
  9. make -j$corecount
  10. make install
  11. cd $tmpdir