kiss-stj

My KISS Linux repo for software I use on my computers.
git clone https://git.stjo.hn/kiss-stj
Log | Files | Refs | README | LICENSE

build (396B)


      1 #!/bin/sh -e
      2 
      3 patch -p1 < no-fribidi.patch
      4 
      5 # Disable download of missing (optional) dependencies
      6 # during the build. This cannot be turned off otherwise.
      7 rm -rf subprojects
      8 
      9 : > tests/meson.build
     10 : > examples/meson.build
     11 : > docs/meson.build
     12 
     13 meson \
     14     --prefix=/usr \
     15     -Dgtk_doc=false \
     16     -Dxft=disabled \
     17     -Dintrospection=enabled \
     18     . build
     19 
     20 ninja -C build
     21 ninja -C build install