alicelinux

A lightweight musl + clang/llvm + libressl + busybox distro
git clone https://codeberg.org/emmett1/alicelinux
Log | Files | Refs | README | LICENSE

abuild (518B)


      1 name=glib-gi
      2 version=2.86.0
      3 release=1
      4 source="https://download.gnome.org/sources/glib/${version%.*}/glib-$version.tar.xz
      5 	0001-glib-compile-schemas-Remove-noisy-deprecation-warnin.patch"
      6 build_opt="
      7 	-Dselinux=disabled
      8 	-Dtests=false
      9 	-Dintrospection=enabled
     10 "
     11 
     12 postbuild() {
     13 	mkdir -p $SRC/tmp
     14 	mv $PKG/usr/lib/girepository-1.0 $SRC/tmp
     15 	mv $PKG/usr/share/gir-1.0 $SRC/tmp
     16 	rm -rf $PKG/*
     17 
     18 	mkdir -p \
     19 		$PKG/usr/lib \
     20 		$PKG/usr/share
     21 
     22 	mv $SRC/tmp/girepository-1.0 $PKG/usr/lib
     23 	mv $SRC/tmp/gir-1.0 $PKG/usr/share
     24 }