20 lines
518 B
Plaintext
20 lines
518 B
Plaintext
# Description: Shared GSettings schemas for the desktop
|
|
# URL: https://gitlab.gnome.org/GNOME/gsettings-desktop-schemas
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Depends on: gobject-introspection intltool
|
|
|
|
name=gsettings-desktop-schemas
|
|
version=40.0
|
|
release=1
|
|
source=(https://download.gnome.org/sources/$name/${version:0:2}/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
meson build --prefix /usr
|
|
ninja -C build -j ${JOBS:-1}
|
|
DESTDIR="$PKG" ninja -C build install
|
|
|
|
rm -r $PKG/usr/share/locale
|
|
}
|