wok view udevil/receipt @ rev 13429

partclone: add btrfs & hfsplus support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Oct 04 11:53:21 2012 +0200 (2012-10-04)
parents
children 63fd5f8d7367
line source
1 # SliTaz package receipt.
3 PACKAGE="udevil"
4 VERSION="0.3.2"
5 CATEGORY="system-tools"
6 SHORT_DESC="Fast and light devices manager."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.xz"
9 WEB_SITE="http://ignorantguru.github.com/udevil/"
10 WGET_URL="https://raw.github.com/IgnorantGuru/udevil/master/packages/$VERSION/$TARBALL"
12 DEPENDS="udev glib"
13 BUILD_DEPENDS="udev-dev glib-dev wget"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr &&
20 make && make install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr
27 cp -a $install/etc $fs
28 cp -a $install/usr/bin $fs/usr
29 # Must be suid root
30 chmod +s $fs/usr/bin/udevil
32 }