wok-next annotate dconf/receipt @ rev 21724

busybox: update configs
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 11:04:25 2020 +0000 (2020-09-01)
parents 8459b1de4897
children
rev   line source
al@20068 1 # SliTaz package receipt v2.
pascal@15721 2
pascal@15721 3 PACKAGE="dconf"
Hans-G?nter@21581 4 VERSION="0.36.0"
pascal@15721 5 CATEGORY="system-tools"
pascal@15721 6 SHORT_DESC="A low-level configuration system"
pascal@15721 7 MAINTAINER="al.bobylev@gmail.com"
pascal@15721 8 LICENSE="LGPL2.1"
al@20068 9 WEB_SITE="https://wiki.gnome.org/Projects/dconf"
al@21017 10 LFS="http://www.linuxfromscratch.org/blfs/view/svn/gnome/dconf.html"
al@20068 11
pascal@15721 12 TARBALL="$PACKAGE-$VERSION.tar.xz"
al@20068 13 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"
pascal@15721 14
Hans-G?nter@21581 15 BUILD_DEPENDS="dbus-dev gtk-doc libxslt-dev meson ninja vala"
al@21020 16 SPLIT="$PACKAGE-dev"
pascal@15721 17
Hans-G?nter@21581 18 compile_rules()
Hans-G?nter@21581 19 {
al@20895 20 mkdir build
al@20895 21 cd build
Hans-G?nter@21581 22 meson-wrapper \
Hans-G?nter@21581 23 -Dbash_completion=false &&
al@20895 24 ninja &&
al@20895 25 ninja install
pascal@15721 26 }
pascal@15721 27
Hans-G?nter@21581 28 genpkg_rules()
Hans-G?nter@21581 29 {
al@20068 30 case $PACKAGE in
al@20068 31 dconf)
al@20068 32 copy @std
Hans-G?nter@21581 33 DEPENDS="dbus glib"
al@20068 34 ;;
al@20068 35 *-dev)
al@20068 36 copy @dev
al@20068 37 DEPENDS="dconf glib-dev"
al@20068 38 ;;
al@20068 39 esac
pascal@15721 40 }