wok view udevil/receipt @ rev 15666

Add ddumbfs
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Dec 13 16:18:29 2013 +0000 (2013-12-13)
parents 2b9f96603415
children 7bc3e289acd8
line source
1 # SliTaz package receipt.
3 PACKAGE="udevil"
4 VERSION="0.4.0"
5 CATEGORY="system-tools"
6 SHORT_DESC="Fast and light devices manager."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.xz"
10 WEB_SITE="http://ignorantguru.github.com/udevil/"
11 WGET_URL="https://raw.github.com/IgnorantGuru/udevil/master/packages/$VERSION/$TARBALL"
13 DEPENDS="udev glib"
14 BUILD_DEPENDS="udev-dev glib-dev wget"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --prefix=/usr &&
21 make && make install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $install/etc $fs
29 cp -a $install/usr/bin $fs/usr
30 # Must be suid root
31 chmod +s $fs/usr/bin/udevil
32 }