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)
|
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_LICENSE="GPL"
|
|
|
|
|
PKG_SITE="https://github.com/IgnorantGuru/udevil"
|
2021-01-19 19:34:16 +00: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"
|
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
|
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
|
|
|
|
|
echo '#!/bin/sh' > ${INSTALL}/usr/sbin/mount.ntfs
|
|
|
|
|
echo '/usr/sbin/modprobe ntfs3' >> ${INSTALL}/usr/sbin/mount.ntfs
|
|
|
|
|
echo '/usr/bin/mount "$@"' >> ${INSTALL}/usr/sbin/mount.ntfs
|
|
|
|
|
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
|
|
|
|
|
}
|