wok diff udisks/receipt @ rev 14957

Up: enlightenment-backgrounds (0.17.4)
author Dominique Corbex <domcox@slitaz.org>
date Thu Aug 08 19:20:58 2013 +0200 (2013-08-08)
parents
children 7896f0694ef6
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/udisks/receipt	Thu Aug 08 19:20:58 2013 +0200
     1.3 @@ -0,0 +1,50 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="udisks"
     1.7 +VERSION="1.0.4"
     1.8 +CATEGORY="system-tools"
     1.9 +SHORT_DESC="D-Bus interfaces to query and manipulate storage devices."
    1.10 +MAINTAINER="pankso@slitaz.org"
    1.11 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.12 +WEB_SITE="http://www.freedesktop.org/wiki/Software/udisks"
    1.13 +WGET_URL="http://hal.freedesktop.org/releases/$TARBALL"
    1.14 +DEPENDS="libatasmart udev libsgutils2 sg3_utils libgudev polkit dbus util-linux-blkid \
    1.15 +dbus-helper parted libdevmapper libgio util-linux-mount lsof"
    1.16 +BUILD_DEPENDS="libatasmart-dev udev-dev sg3_utils-dev libgudev-dev \
    1.17 +polkit-dev dbus-dev dbus-glib-dev pcre-dev dbus-dev parted-dev libdevmapper-dev \
    1.18 +util-linux-blkid-dev"
    1.19 +
    1.20 +# Rules to configure and make the package.
    1.21 +compile_rules()
    1.22 +{
    1.23 +	cd $src
    1.24 +	./configure \
    1.25 +		--prefix=/usr \
    1.26 +		--libexecdir=/usr/lib/udisks \
    1.27 +		--sysconfdir=/etc \
    1.28 +		--localstatedir=/var \
    1.29 +		--disable-static \
    1.30 +		--disable-remote-access \
    1.31 +		--disable-gtk-doc-html \
    1.32 +		$CONFIGURE_ARGS &&
    1.33 +	make && make install
    1.34 +}
    1.35 +
    1.36 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.37 +genpkg_rules()
    1.38 +{
    1.39 +	mkdir -p $fs/etc/polkit-1/localauthority/90-mandatory.d \
    1.40 +		$fs/usr/lib/udev $fs/usr/share $fs/etc/udev
    1.41 +	cp -a $install/etc/dbus-1 $fs/etc
    1.42 +	cp -a $install/lib/udev/rules.d $fs/etc/udev
    1.43 +	cp -a $install/lib/udev/udisks* $fs/usr/lib/udev/
    1.44 +	cp -a $install/usr/bin $fs/usr
    1.45 +	cp -a $install/sbin $fs
    1.46 +	cp -a $install/usr/lib/udisks $fs/usr/lib
    1.47 +	cp -a $install/usr/share/*-1 $fs/usr/share
    1.48 +	#we don't have consolekit and don't want systemd so we need
    1.49 +	#a rule to give disk group complete access to udisks2
    1.50 +	#methods without password.
    1.51 +	cp $stuff/org.freedesktop.udisks.pkla \
    1.52 +		$fs/etc/polkit-1/localauthority/90-mandatory.d
    1.53 +}