wok view udevil/receipt @ rev 16557

Up: slitaz-base-files (5.6.2)
author Christophe Lincoln <pankso@slitaz.org>
date Thu May 01 08:34:51 2014 +0200 (2014-05-01)
parents f4c22f009037
children 4cd6aef57b3a
line source
1 # SliTaz package receipt.
3 PACKAGE="udevil"
4 VERSION="0.4.3"
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 }