wok view udevil/receipt @ rev 23966

updated dpkg (1.16.12 -> 1.17.27) see bug report 248
author Hans-G?nter Theisgen
date Sun Oct 04 06:59:31 2020 +0100 (2020-10-04)
parents 643835a7d5a1
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="udevil"
4 VERSION="0.4.4"
5 CATEGORY="system-tools"
6 SHORT_DESC="Fast and light devices manager."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="https://ignorantguru.github.io/udevil/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://github.com/IgnorantGuru/$PACKAGE/archive/$VERSION.tar.gz"
14 DEPENDS="udev glib"
15 BUILD_DEPENDS="udev-dev glib-dev file"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure --prefix=/usr &&
21 make &&
22 make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
30 cp -a $install/etc $fs
31 cp -a $install/usr/bin $fs/usr
33 # Must be suid root
34 chmod +s $fs/usr/bin/udevil
35 }