2013-08-22 14:28:25 +02:00
################################################################################
# This file is part of OpenELEC - http://www.openelec.tv
2016-01-02 17:29:56 +01:00
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
2013-08-22 14:28:25 +02:00
#
2013-12-21 21:51:48 +01:00
# OpenELEC is free software: you can redistribute it and/or modify
2013-08-22 14:28:25 +02:00
# it under the terms of the GNU General Public License as published by
2013-12-21 21:51:48 +01:00
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
2013-08-22 14:28:25 +02:00
#
2013-12-21 21:51:48 +01:00
# OpenELEC is distributed in the hope that it will be useful,
2013-08-22 14:28:25 +02:00
# but WITHOUT ANY WARRANTY; without even the implied warranty of
2013-12-21 21:51:48 +01:00
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2013-08-22 14:28:25 +02:00
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
2013-12-21 21:51:48 +01:00
# along with OpenELEC. If not, see <http://www.gnu.org/licenses/>.
2013-08-22 14:28:25 +02:00
################################################################################
PKG_NAME = "udevil"
2015-05-23 16:28:28 +02:00
PKG_VERSION = "0.4.4"
2017-07-17 20:49:22 +02:00
PKG_SHA256 = "ce8c51fd4d589cda7be56e75b42188deeb258c66fc911a9b3a70a3945c157739"
2013-08-22 14:28:25 +02:00
PKG_ARCH = "any"
PKG_LICENSE = "GPL"
PKG_SITE = "https://github.com/IgnorantGuru/udevil"
2014-02-25 14:28:04 +02:00
PKG_URL = " https://github.com/IgnorantGuru/udevil/raw/pkg/ $PKG_VERSION / $PKG_NAME - $PKG_VERSION .tar.xz "
2014-01-30 14:31:10 +01:00
PKG_DEPENDS_TARGET = "toolchain systemd glib"
2013-08-22 14:28:25 +02:00
PKG_SECTION = "system"
PKG_SHORTDESC = "udevil: Mounts and unmounts removable devices and networks without a password."
PKG_LONGDESC = "udevil Mounts and unmounts removable devices and networks without a password (set suid), shows device info, monitors device changes. Emulates mount's and udisks's command line usage and udisks v1's output. Includes the devmon automounting daemon."
PKG_CONFIGURE_OPTS_TARGET = " --disable-systemd \
2016-12-04 13:23:47 -08:00
--with-mount-prog= /usr/bin/mount \
--with-umount-prog= /usr/bin/umount \
--with-losetup-prog= /usr/sbin/losetup \
2013-08-22 14:28:25 +02:00
--with-setfacl-prog= /usr/bin/setfacl"
m a k e i n s t a l l _ t a r g e t ( ) {
: # nothing to install
}
p o s t _ m a k e i n s t a l l _ t a r g e t ( ) {
mkdir -p $INSTALL /etc/udevil
cp $PKG_DIR /config/udevil.conf $INSTALL /etc/udevil
mkdir -p $INSTALL /usr/bin
cp -PR src/udevil $INSTALL /usr/bin
}
2013-09-15 19:27:45 +03:00
p o s t _ i n s t a l l ( ) {
enable_service udevil-mount@.service
}