commit 4ec2bdf398d74a3ecf4a9293360d183619711ca3 parent 6876de87dade467fc43c5a437c3872f633dca2fc Author: Nihal Jere <nihal@nihaljere.xyz> Date: Tue, 5 Jan 2021 21:47:12 -0600 ntfs-3g: fixed mounting with `mount` Diffstat:
A | ntfs-3g/build | | | 12 | ++++++++++++ |
A | ntfs-3g/checksums | | | 2 | ++ |
A | ntfs-3g/depends | | | 2 | ++ |
A | ntfs-3g/sources | | | 2 | ++ |
A | ntfs-3g/version | | | 2 | ++ |
5 files changed, 20 insertions(+), 0 deletions(-)
diff --git a/ntfs-3g/build b/ntfs-3g/build @@ -0,0 +1,12 @@ +#!/bin/sh -e + +export MAKEFLAGS=-j4 + +./configure \ + --prefix=/usr + +make +make DESTDIR="$1" install + +rm "$1/sbin/mount.ntfs-3g" +ln -s /usr/bin/ntfs-3g "$1/sbin/mount.ntfs" diff --git a/ntfs-3g/checksums b/ntfs-3g/checksums @@ -0,0 +1 @@ +/home/nihal/.local/community/community/ntfs-3g/checksums+ \ No newline at end of file diff --git a/ntfs-3g/depends b/ntfs-3g/depends @@ -0,0 +1 @@ +/home/nihal/.local/community/community/ntfs-3g/depends+ \ No newline at end of file diff --git a/ntfs-3g/sources b/ntfs-3g/sources @@ -0,0 +1 @@ +/home/nihal/.local/community/community/ntfs-3g/sources+ \ No newline at end of file diff --git a/ntfs-3g/version b/ntfs-3g/version @@ -0,0 +1 @@ +/home/nihal/.local/community/community/ntfs-3g/version+ \ No newline at end of file