wok-current view udevil/receipt @ rev 14642
Xorg. Don't know why, but using SOURCE in xorg-libXaw and xorg-libXpm
| author | Aleksej Bobylev <al.bobylev@gmail.com> | 
|---|---|
| date | Sun Jun 02 16:48:40 2013 +0000 (2013-06-02) | 
| parents | 7952354474fb | 
| children | 2b9f96603415 | 
 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 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 }