#!/bin/mkpkg # description: NTFS read/write filesystem driver via FUSE # url: https://github.com/tuxera/ntfs-3g name=ntfs-3g version=2026.9.18 release=1 source=(https://tuxera.com/opensource/ntfs-3g_ntfsprogs-$version.tgz) renames=($name-$version.tgz) sha256sums=( "bcf3cf301a79e42d330128ffb52d4cf615bd1d30c10a92d9d8d14f2bb4fcd9bf" ) build() { cd ntfs-3g-$version ./configure \ --prefix=/usr \ --sbindir=/usr/sbin \ --disable-static \ --enable-posix-acls \ --with-fuse=internal make mkdir -p $PKG/lib make DESTDIR=$PKG install # Move to /usr hierarchy mv $PKG/lib/* $PKG/usr/lib/ mv $PKG/bin/* $PKG/usr/bin/ mv $PKG/sbin/* $PKG/usr/sbin/ rmdir $PKG/bin $PKG/sbin $PKG/lib # Fix mount symlinks ln -sf /usr/bin/ntfs-3g $PKG/usr/sbin/mount.ntfs ln -sf /usr/bin/lowntfs-3g $PKG/usr/sbin/mount.lowntfs-3g # Create mount.ntfs symlink ln -sf ntfs-3g $PKG/usr/sbin/mount.ntfs # Clean up libtool archives find $PKG -name '*.a' -delete } signify() { untrusted comment: public key RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3 } # vim: filetype=sh