diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..5151f34 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +ntfs-3g-system-compression (1.0-1) unstable; urgency=medium + + * Initial release. + + -- Nicolas Arenas Thu, 04 Jul 2025 12:00:00 +0000 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..b1bd38b --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +13 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..891fea8 --- /dev/null +++ b/debian/control @@ -0,0 +1,15 @@ +Source: ntfs-3g-system-compression +Section: utils +Priority: optional +Maintainer: Nicolas Arenas +Build-Depends: debhelper-compat (= 13), autoconf, automake, libtool, pkg-config, build-essential, libfuse-dev, ntfs-3g-dev +Standards-Version: 4.6.2 +Homepage: https://github.com/ebiggers/ntfs-3g-system-compression +Rules-Requires-Root: no + +Package: ntfs-3g-system-compression +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} , ntfs-3g +Description: Support for reading Windows system-compressed files on NTFS + This library adds support to ntfs-3g for reading files compressed + with Windows system compression (LZX algorithm). diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..b22f7a6 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,16 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: ntfs-3g-system-compression +Source: https://github.com/ebiggers/ntfs-3g-system-compression + +Files: * +Copyright: 2016 Eric Biggers +License: GPL-2+ + +License: GPL-2+ + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License + as published by the Free Software Foundation; either version 2 + of the License, or (at your option) any later version. + . + On Debian systems, the complete text of the GNU General + Public License version 2 can be found in "/usr/share/common-licenses/GPL-2". diff --git a/debian/rules b/debian/rules new file mode 100644 index 0000000..2cb8514 --- /dev/null +++ b/debian/rules @@ -0,0 +1,11 @@ +#!/usr/bin/make -f + +%: + dh $@ + +override_dh_auto_configure: + autoreconf -i + ./configure --prefix=/usr + +override_dh_auto_install: + $(MAKE) install DESTDIR=$(CURDIR)/debian/ntfs-3g-system-compression diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..89ae9db --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (native)