exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit 010b2e9b258cf6d2fd84ce69e5b75c4f0fdaea31
parent 8f266d5872984c598b340d2d46594e5958fe4df7
Author: Christian Grothoff <christian@grothoff.org>
Date:   Thu, 21 Jan 2021 17:53:17 +0100

update debian package build rules

Diffstat:
Mdebian/control | 3++-
Mdebian/libtalerexchange-dev.install | 2++
Mdebian/rules | 4++++
3 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/debian/control b/debian/control @@ -82,7 +82,8 @@ Depends: libgnunet-dev (>=0.14.0), libgcrypt20-dev (>=1.6), libmicrohttpd-dev (>=0.9.33), - ${misc:Depends} + ${misc:Depends}, + ${shlibs:Depends} Description: libraries to talk to a GNU Taler exchange (development) . This package contains the development files. diff --git a/debian/libtalerexchange-dev.install b/debian/libtalerexchange-dev.install @@ -1 +1,3 @@ usr/include/taler/* +usr/lib/*/libtalertesting.so.* +usr/lib/*/libtalerfakebank.so.* diff --git a/debian/rules b/debian/rules @@ -33,6 +33,10 @@ override_dh_auto_clean: # Remove files already present in libtalerexchange from main taler-exchange package override_dh_install: dh_install + cd debian/libtalerexchange-dev; find . -type f -exec rm -f ../libtalerauditor/{} \; + cd debian/libtalerexchange-dev; find . -type f -exec rm -f ../taler-exchange/{} \; + cd debian/libtalerexchange-dev; find . -type f -exec rm -f ../libtalerexchange/{} \; + cd debian/libtalerexchange-dev; find . -type f -exec rm -f ../libtalerauditor/{} \; cd debian/taler-auditor; find . -type f -exec rm -f ../libtalerauditor/{} \; cd debian/libtalerexchange; find . -type f -exec rm -f ../taler-exchange/{} \; cd debian/taler-auditor; find . -type f -exec rm -f ../taler-exchange/{} \;