wok-next view udevil/receipt @ rev 21153

Small updates.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Jan 31 16:45:41 2019 +0200 (2019-01-31)
parents 10df65db91ad
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="udevil"
4 VERSION="0.4.4"
5 CATEGORY="system-tools"
6 SHORT_DESC="Mount without password"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="http://ignorantguru.github.io/udevil/"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="https://raw.githubusercontent.com/IgnorantGuru/udevil/pkg/$VERSION/$TARBALL"
14 BUILD_DEPENDS="intltool eudev-dev"
16 compile_rules() {
17 ./configure \
18 --disable-systemd \
19 $CONFIGURE_ARGS &&
20 fix libtool &&
21 make &&
22 make install || return 1
24 # Must be suid root
25 chmod +s $install/usr/bin/udevil
26 }
28 genpkg_rules() {
29 copy @std
30 DEPENDS="eudev glib acl"
31 SUGGESTED="util-linux-mount util-linux-misc"
32 }