# HG changeset patch # User Christophe Lincoln # Date 1347612633 -7200 # Node ID e58f9312f0e7cb51850063c6bf78c2511174b14b # Parent 8b30da0aa071e2b4ffd9863dad76eaea5554f55b Add: udevil (light automounter using udev) Let us mount devices via spacefm without systemd/udisks diff -r 8b30da0aa071 -r e58f9312f0e7 udevil/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/udevil/receipt Fri Sep 14 10:50:33 2012 +0200 @@ -0,0 +1,32 @@ +# SliTaz package receipt. + +PACKAGE="udevil" +VERSION="0.3.2" +CATEGORY="system-tools" +SHORT_DESC="Fast and light devices manager." +MAINTAINER="pankso@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.xz" +WEB_SITE="http://ignorantguru.github.com/udevil/" +WGET_URL="https://raw.github.com/IgnorantGuru/udevil/master/packages/$VERSION/$TARBALL" + +DEPENDS="udev glib" +BUILD_DEPENDS="udev-dev glib-dev wget" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure --prefix=/usr && + make && make install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $install/etc $fs + cp -a $install/usr/bin $fs/usr + # Must be suid root + chmod +s $fs/usr/bin/udevil + +}