wok view udevil/receipt @ rev 13951

add python netifaces
author ernia <monghitri@aruba.it>
date Tue Jan 29 21:03:49 2013 +0000 (2013-01-29)
parents 63fd5f8d7367
children e074c6ae1cb0
line source
1 # SliTaz package receipt.
3 PACKAGE="udevil"
4 VERSION="0.3.6"
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
31 }