diff options
| author | Woodpecker CI <emmett1.2miligrams@protonmail.com> | 2026-03-27 15:48:30 +0000 |
|---|---|---|
| committer | Woodpecker CI <emmett1.2miligrams@protonmail.com> | 2026-03-27 15:48:30 +0000 |
| commit | 58e46a9ed111c37215c8554e65cee25eddbc37c2 (patch) | |
| tree | 1ec5e6689ace772996f67ebd134b7d687f3442a6 | |
| parent | f462b41b8ece0501d948837dd08e451f8077242b (diff) | |
| download | alicelinux-58e46a9ed111c37215c8554e65cee25eddbc37c2.tar.gz alicelinux-58e46a9ed111c37215c8554e65cee25eddbc37c2.zip | |
Woodpecker CI d21db8ce21b9c7145349dee94a3ab63fb33543d6 [SKIP CI]
| -rw-r--r-- | ntfs-3g/.checksum | 2 | ||||
| -rw-r--r-- | ntfs-3g/abuild | 12 |
2 files changed, 12 insertions, 2 deletions
diff --git a/ntfs-3g/.checksum b/ntfs-3g/.checksum index 0cdfeab5..8f35045b 100644 --- a/ntfs-3g/.checksum +++ b/ntfs-3g/.checksum @@ -1 +1 @@ -a69476beba27067f018cc53ac3e18bf97b11c078dbe589f787b2d9546bf7fecc ntfs-3g_ntfsprogs-2022.10.3.tgz +1b342b7f2b2b4cd8d09cb5e7b5808407f73255040ae24f9408c37b59996460ab ntfs-3g-2022.10.3.tar.gz diff --git a/ntfs-3g/abuild b/ntfs-3g/abuild index 715ef994..67aba22b 100644 --- a/ntfs-3g/abuild +++ b/ntfs-3g/abuild @@ -1,6 +1,16 @@ name=ntfs-3g version=2022.10.3 release=1 -source="https://tuxera.com/opensource/${name}_ntfsprogs-$version.tgz" +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 +} |