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