2018-07-16 20:45:36 +02:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
2021-04-24 06:24:09 +00:00
|
|
|
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
|
2013-08-22 14:28:25 +02:00
|
|
|
|
|
|
|
|
PKG_NAME="udevil"
|
2021-04-24 06:24:09 +00:00
|
|
|
PKG_VERSION="f2b715d1d821e4b69b2fb0864a5a178dd67877f0"
|
|
|
|
|
PKG_SHA256="3351d56c553c518cb2ce7b24892a4b62d630ba4f6ebee2c3994c4be9828f0629"
|
2013-08-22 14:28:25 +02:00
|
|
|
PKG_LICENSE="GPL"
|
2021-04-24 06:24:09 +00:00
|
|
|
PKG_SITE="https://github.com/alpharde/udevil"
|
|
|
|
|
PKG_URL="https://github.com/alpharde/udevil/archive/${PKG_VERSION}.tar.gz"
|
2014-01-30 14:31:10 +01:00
|
|
|
PKG_DEPENDS_TARGET="toolchain systemd glib"
|
2018-10-22 15:06:12 +02:00
|
|
|
PKG_LONGDESC="Mounts and unmounts removable devices and networks without a password."
|
2013-08-22 14:28:25 +02:00
|
|
|
|
|
|
|
|
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"
|
|
|
|
|
|
|
|
|
|
makeinstall_target() {
|
|
|
|
|
: # nothing to install
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
post_makeinstall_target() {
|
2021-01-19 19:34:16 +00:00
|
|
|
mkdir -p ${INSTALL}/etc/udevil
|
|
|
|
|
cp ${PKG_DIR}/config/udevil.conf ${INSTALL}/etc/udevil
|
2023-11-10 10:20:33 +01:00
|
|
|
ln -sf /storage/.config/udevil.conf ${INSTALL}/etc/udevil/udevil-user-root.conf
|
2013-08-22 14:28:25 +02:00
|
|
|
|
2021-01-19 19:34:16 +00:00
|
|
|
mkdir -p ${INSTALL}/usr/bin
|
|
|
|
|
cp -PR src/udevil ${INSTALL}/usr/bin
|
2021-12-04 03:12:36 +00:00
|
|
|
|
|
|
|
|
mkdir -p ${INSTALL}/usr/sbin
|
2024-01-08 14:30:00 +01:00
|
|
|
echo -e '#!/bin/sh\nexec /usr/bin/mount -t ntfs3 "$@"' > ${INSTALL}/usr/sbin/mount.ntfs
|
2021-12-04 03:12:36 +00:00
|
|
|
chmod 755 ${INSTALL}/usr/sbin/mount.ntfs
|
2013-08-22 14:28:25 +02:00
|
|
|
}
|
2013-09-15 19:27:45 +03:00
|
|
|
|
|
|
|
|
post_install() {
|
|
|
|
|
enable_service udevil-mount@.service
|
|
|
|
|
}
|