wok-next diff udevil/receipt @ rev 20082

Up clementine
author Xander Ziiryanoff <psychomaniak@xakep.ru>
date Wed Oct 25 12:19:39 2017 +0200 (2017-10-25)
parents 0c247ee1a841
children 10df65db91ad
line diff
     1.1 --- a/udevil/receipt	Fri Mar 24 12:53:44 2017 +0200
     1.2 +++ b/udevil/receipt	Wed Oct 25 12:19:39 2017 +0200
     1.3 @@ -1,32 +1,34 @@
     1.4 -# SliTaz package receipt.
     1.5 +# SliTaz package receipt v2.
     1.6  
     1.7  PACKAGE="udevil"
     1.8 -VERSION="0.4.3"
     1.9 +VERSION="0.4.4"
    1.10  CATEGORY="system-tools"
    1.11 -SHORT_DESC="Fast and light devices manager."
    1.12 +SHORT_DESC="Mount without password"
    1.13  MAINTAINER="pankso@slitaz.org"
    1.14  LICENSE="GPL3"
    1.15 +WEB_SITE="http://ignorantguru.github.io/udevil/"
    1.16 +
    1.17  TARBALL="$PACKAGE-$VERSION.tar.xz"
    1.18 -WEB_SITE="http://ignorantguru.github.com/udevil/"
    1.19 -WGET_URL="https://raw.github.com/IgnorantGuru/udevil/master/packages/$VERSION/$TARBALL"
    1.20 +WGET_URL="https://raw.githubusercontent.com/IgnorantGuru/udevil/pkg/$VERSION/$TARBALL"
    1.21  
    1.22 -DEPENDS="udev glib"
    1.23 -BUILD_DEPENDS="udev-dev glib-dev wget intltool"
    1.24 +BUILD_DEPENDS="intltool eudev-dev"
    1.25  
    1.26  # Rules to configure and make the package.
    1.27  compile_rules()
    1.28  {
    1.29 -	cd $src
    1.30 -	./configure --prefix=/usr &&
    1.31 -	make && make install
    1.32 +	./configure \
    1.33 +		--disable-systemd \
    1.34 +		$CONFIGURE_ARGS &&
    1.35 +	make && make install || return 1
    1.36 +
    1.37 +	# Must be suid root
    1.38 +	chmod +s $install/usr/bin/udevil
    1.39  }
    1.40  
    1.41  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.42  genpkg_rules()
    1.43  {
    1.44 -	mkdir -p $fs/usr
    1.45 -	cp -a $install/etc $fs
    1.46 -	cp -a $install/usr/bin $fs/usr
    1.47 -	# Must be suid root
    1.48 -	chmod +s $fs/usr/bin/udevil
    1.49 +	copy @std
    1.50 +	DEPENDS="eudev glib   acl"
    1.51 +	SUGGESTED="util-linux-mount util-linux-misc"
    1.52  }