diff --git a/debian/control b/debian/control index 8d84313..495a7f6 100644 --- a/debian/control +++ b/debian/control @@ -4,6 +4,10 @@ Maintainer: DuĊĦan Poizl Build-Depends: debhelper (>= 9), cdbs, cmake, + pkg-config, + liblz4-dev, + libpugixml-dev, + zlib1g-dev, libzstd-dev Standards-Version: 4.5.0 Section: libs @@ -16,11 +20,25 @@ Architecture: any Multi-Arch: same Depends: libxisf (= ${binary:Version}), ${misc:Depends} Description: Library to load and save XISF images development files - Native format of PixInsight astroprocessing suite + This package contain development files. + . + XISF is native format of PixInsight astroprocessing suite. + Extensible Image Serialization Format (XISF) is the native file format + of PixInsight. It is a free, open format for storage, management and + interchange of digital images and associated data. + . + This C++ library implements XISF specification 1.0 which can be found at + https://pixinsight.com/doc/docs/XISF-1.0-spec/XISF-1.0-spec.html Package: libxisf Architecture: any Multi-Arch: same Depends: ${shlibs:Depends}, ${misc:Depends} Description: Library to load and save XISF images - Native format of PixInsight astroprocessing suite + XISF is native format of PixInsight astroprocessing suite. + Extensible Image Serialization Format (XISF) is the native file format + of PixInsight. It is a free, open format for storage, management and + interchange of digital images and associated data. + . + This C++ library implements XISF specification 1.0 which can be found at + https://pixinsight.com/doc/docs/XISF-1.0-spec/XISF-1.0-spec.html diff --git a/debian/rules b/debian/rules index db10df1..24b0971 100644 --- a/debian/rules +++ b/debian/rules @@ -8,3 +8,9 @@ include /usr/share/cdbs/1/class/cmake.mk export CFLAGS := $(shell dpkg-buildflags --get CFLAGS) export CXXFLAGS := $(shell dpkg-buildflags --get CXXFLAGS) export LDFLAGS := $(shell dpkg-buildflags --get LDFLAGS) + +%: + dh $@ + +override_dh_auto_configure: + dh_auto_configure -- -DUSE_BUNDLED_LIBS=Off