wok-next view udisks2/receipt @ rev 20785

gpgme: add gnupg, since build can not find gpgconf and gpg
author Erkan Yilmaz <erkan@slitaz.org>
date Sat Jun 09 07:02:52 2018 +0000 (2018-06-09)
parents 10df65db91ad
children e7a485521d6a
line source
1 # SliTaz package receipt v2.
3 PACKAGE="udisks2"
4 VERSION="2.7.6"
5 CATEGORY="system-tools"
6 SHORT_DESC="D-Bus service to access and manipulate storage devices"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://www.freedesktop.org/wiki/Software/udisks/"
10 LFS="http://www.linuxfromscratch.org/blfs/view/stable/general/udisks2.html"
12 TARBALL="udisks-$VERSION.tar.bz2"
13 WGET_URL="https://github.com/storaged-project/udisks/releases/download/udisks-$VERSION/$TARBALL"
15 BUILD_DEPENDS="docbook-xsl gtk-doc gobject-introspection-dev libgudev-dev \
16 libblockdev-dev polkit-dev libatasmart-dev acl-dev intltool"
17 SPLIT="udisks2-dev"
19 compile_rules() {
20 ./configure \
21 --disable-static \
22 --enable-fhs-media \
23 $CONFIGURE_ARGS &&
24 fix libtool &&
25 make &&
26 make install || return 1
28 # mount to "/media" instead of "/media/<user>"
29 mkdir -p $install/etc/udev/rules.d/
30 cp $stuff/99-udisks2.rules $install/etc/udev/rules.d/
31 }
33 genpkg_rules() {
34 case $PACKAGE in
35 udisks2)
36 copy @std
37 DEPENDS="acl glib libatasmart libblockdev libgudev polkit \
38 util-linux-mount"
39 ;;
40 *-dev)
41 copy @dev
42 DEPENDS="udisks2 glib-dev"
43 ;;
44 esac
45 }