wok-next annotate udisks2/receipt @ rev 21469

updated tinc (1.0.25 -> 1.0.36)
author Hans-G?nter Theisgen
date Wed May 13 07:41:00 2020 +0100 (2020-05-13)
parents d635206a5649
children
rev   line source
al@19957 1 # SliTaz package receipt v2.
monghitri@14125 2
monghitri@14125 3 PACKAGE="udisks2"
al@21087 4 VERSION="2.8.1"
monghitri@14125 5 CATEGORY="system-tools"
al@17280 6 SHORT_DESC="D-Bus service to access and manipulate storage devices"
al@21020 7 MAINTAINER="devel@slitaz.org"
pascal@15002 8 LICENSE="GPL2"
al@19536 9 WEB_SITE="https://www.freedesktop.org/wiki/Software/udisks/"
al@20905 10 LFS="http://www.linuxfromscratch.org/blfs/view/svn/general/udisks2.html"
al@19957 11
al@17280 12 TARBALL="udisks-$VERSION.tar.bz2"
al@19957 13 WGET_URL="https://github.com/storaged-project/udisks/releases/download/udisks-$VERSION/$TARBALL"
al@21087 14 TARBALL_SHA1="e69fc1a417f4d5e116487ca735bbef89e96cc0f4"
monghitri@14125 15
al@19957 16 BUILD_DEPENDS="docbook-xsl gtk-doc gobject-introspection-dev libgudev-dev \
al@21087 17 libblockdev-dev polkit-no-script-dev libatasmart-dev acl-dev intltool"
al@21020 18 SPLIT="$PACKAGE-dev"
monghitri@14125 19
al@21087 20 DEPENDS_std="acl glib libatasmart libblockdev libgudev polkit-no-script \
al@21087 21 util-linux-mount"
al@21081 22 DEPENDS_dev="$PACKAGE glib-dev"
al@21081 23
al@19957 24 compile_rules() {
monghitri@14125 25 ./configure \
al@19957 26 --disable-static \
al@19536 27 --enable-fhs-media \
al@19536 28 $CONFIGURE_ARGS &&
al@20604 29 fix libtool &&
al@20534 30 make &&
al@21087 31 sed -i -r 's|^ +||; s|\\m\[blue\]||; s|\\m\[\]||' doc/man/*.[158] &&
al@20534 32 make install || return 1
al@19957 33
al@19957 34 # mount to "/media" instead of "/media/<user>"
al@21087 35 install -Dm644 $stuff/99-udisks2.rules $install/etc/udev/rules.d/99-udisks2.rules
monghitri@14125 36 }