wok view udevil/receipt @ rev 13580

slitaz-base-files: update WGET_URL
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Nov 05 21:05:18 2012 +0100 (2012-11-05)
parents e58f9312f0e7
children 7952354474fb
line source
1 # SliTaz package receipt.
3 PACKAGE="udevil"
4 VERSION="0.3.4"
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 }