use build-aux to support Debian packaging
This commit is contained in:
parent
3c5e02214e
commit
b1c863047a
1
.gitignore
vendored
1
.gitignore
vendored
@ -132,3 +132,4 @@ src/testing/test_bank_api_with_nexus
|
|||||||
src/util/taler_error_codes.c
|
src/util/taler_error_codes.c
|
||||||
.deps/
|
.deps/
|
||||||
src/bank-lib/taler-wire-gateway-client
|
src/bank-lib/taler-wire-gateway-client
|
||||||
|
build-aux/
|
||||||
|
@ -18,6 +18,7 @@
|
|||||||
#
|
#
|
||||||
AC_PREREQ([2.69])
|
AC_PREREQ([2.69])
|
||||||
AC_INIT([taler-exchange], [0.8.1], [taler-bug@gnunet.org])
|
AC_INIT([taler-exchange], [0.8.1], [taler-bug@gnunet.org])
|
||||||
|
AC_CONFIG_AUX_DIR([build-aux])
|
||||||
AC_CONFIG_SRCDIR([src/util/util.c])
|
AC_CONFIG_SRCDIR([src/util/util.c])
|
||||||
AC_CONFIG_HEADERS([taler_config.h])
|
AC_CONFIG_HEADERS([taler_config.h])
|
||||||
# support for non-recursive builds
|
# support for non-recursive builds
|
||||||
|
1
debian/libtalerexchange.install
vendored
1
debian/libtalerexchange.install
vendored
@ -1,2 +1,3 @@
|
|||||||
|
bin/taler-config
|
||||||
usr/lib/*/*.so.*
|
usr/lib/*/*.so.*
|
||||||
usr/share/
|
usr/share/
|
||||||
|
5
debian/rules
vendored
5
debian/rules
vendored
@ -33,3 +33,8 @@ override_dh_auto_install-indep:
|
|||||||
|
|
||||||
override_dh_auto_clean:
|
override_dh_auto_clean:
|
||||||
dh_auto_clean
|
dh_auto_clean
|
||||||
|
|
||||||
|
# Remove files already present in libtalerexchange from main taler-exchange package
|
||||||
|
override_dh_install:
|
||||||
|
dh_install
|
||||||
|
cd debian/libtalerexchange; find . -type f -exec rm -f ../taler-exchange/{} \;
|
||||||
|
Loading…
Reference in New Issue
Block a user