wok-next view udevil/receipt @ rev 19925

libftdi: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Oct 14 23:27:36 2017 +0200 (2017-10-14)
parents 0c247ee1a841
children 10df65db91ad
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="pankso@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 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure \
20 --disable-systemd \
21 $CONFIGURE_ARGS &&
22 make && make install || return 1
24 # Must be suid root
25 chmod +s $install/usr/bin/udevil
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 copy @std
32 DEPENDS="eudev glib acl"
33 SUGGESTED="util-linux-mount util-linux-misc"
34 }