blob: 796c4450250c18ff2b4578f2915cdb4ba1701579 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
name=ntfs-3g
version=2026.2.25
release=1
source="https://github.com/tuxera/ntfs-3g/archive/${version}/ntfs-3g-${version}.tar.gz"
build_opt="--exec-prefix=/usr --with-fuse=external --disable-ldconfig"
export CFLAGS="$CFLAGS -D_FILE_OFFSET_BITS=64"
prebuild() {
# disable crypto that required libgrypt
cat > m4/libgcrypt.m4 << 'EOF'
AC_DEFUN([AM_PATH_LIBGCRYPT], [
have_libgcrypt=false
])
EOF
autoreconf -fiv
}
|