mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2025-12-27 14:10:32 +00:00
Put libmount library in subpackage libmount, mount utilities in subpackage mount-utils, libfdisk in subpackage libfdisk, and fdisk utilities in subpackage fdisk. On my aarch64 device, /system/bin/mount is unable to handle logical volumes (tries to access the non-existing /etc/fstab and errors), so lets add our own libmount package. Enabling libmount also enables the lsblk utility, which we put in blk-utils.
28 lines
793 B
Bash
28 lines
793 B
Bash
TERMUX_SUBPKG_DESCRIPTION="Utilities for (un)mounting filesystems"
|
|
TERMUX_SUBPKG_DEPENDS="libblkid, libsmartcols, libmount"
|
|
TERMUX_SUBPKG_DEPEND_ON_PARENT="no"
|
|
TERMUX_SUBPKG_BREAKS="termux-tools (<= 1.34.1)"
|
|
TERMUX_SUBPKG_INCLUDE="
|
|
bin/findmnt
|
|
bin/fstrim
|
|
bin/lslocks
|
|
bin/mount
|
|
bin/swapoff
|
|
bin/swapon
|
|
bin/umount
|
|
share/bash-completion/completions/findmnt
|
|
share/bash-completion/completions/fstrim
|
|
share/bash-completion/completions/lslocks
|
|
share/bash-completion/completions/mount
|
|
share/bash-completion/completions/swapoff
|
|
share/bash-completion/completions/swapon
|
|
share/bash-completion/completions/umount
|
|
share/man/man8/findmnt.8.gz
|
|
share/man/man8/fstrim.8.gz
|
|
share/man/man8/lslocks.8.gz
|
|
share/man/man8/mount.8.gz
|
|
share/man/man8/swapoff.8.gz
|
|
share/man/man8/swapon.8.gz
|
|
share/man/man8/umount.8.gz
|
|
"
|