aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZak Wilcox <iwilcox@iwilcox.me.uk>2015-09-17 07:23:04 +0100
committerLuke Dashjr <luke-jr+git@utopios.org>2015-11-05 19:57:12 +0000
commit43c2789fe36fd8ee7657d2e1cea65f7c49564eb7 (patch)
treec3581c7dfa22ec14c018ea86324a15b8e4f2de5e
parentdfe0d4da7e56926937d1f309eb43030a81fa29df (diff)
downloadbitcoin-43c2789fe36fd8ee7657d2e1cea65f7c49564eb7.tar.xz
Split bitcoin-tx into its own package
Reverts the change putting it in the bitcoind deb.
-rw-r--r--contrib/debian/bitcoin-tx.install1
-rw-r--r--contrib/debian/bitcoind.install1
-rw-r--r--contrib/debian/control15
3 files changed, 16 insertions, 1 deletions
diff --git a/contrib/debian/bitcoin-tx.install b/contrib/debian/bitcoin-tx.install
new file mode 100644
index 0000000000..2c21052a68
--- /dev/null
+++ b/contrib/debian/bitcoin-tx.install
@@ -0,0 +1 @@
+usr/local/bin/bitcoin-tx usr/bin
diff --git a/contrib/debian/bitcoind.install b/contrib/debian/bitcoind.install
index 494e5cbdc3..798ea851f6 100644
--- a/contrib/debian/bitcoind.install
+++ b/contrib/debian/bitcoind.install
@@ -1,3 +1,2 @@
usr/local/bin/bitcoind usr/bin
usr/local/bin/bitcoin-cli usr/bin
-usr/local/bin/bitcoin-tx usr/bin
diff --git a/contrib/debian/control b/contrib/debian/control
index a653260ad3..a1af841f1c 100644
--- a/contrib/debian/control
+++ b/contrib/debian/control
@@ -56,3 +56,18 @@ Description: peer-to-peer network based digital currency - Qt GUI
requires 20+ GB of space, slowly growing.
.
This package provides Bitcoin-Qt, a GUI for Bitcoin based on Qt.
+
+Package: bitcoin-tx
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: peer-to-peer digital currency - standalone transaction tool
+ Bitcoin is a free open source peer-to-peer electronic cash system that
+ is completely decentralized, without the need for a central server or
+ trusted parties. Users hold the crypto keys to their own money and
+ transact directly with each other, with the help of a P2P network to
+ check for double-spending.
+ .
+ This package provides bitcoin-tx, a command-line transaction creation
+ tool with minimal dependencies which can be used without a bitcoin
+ daemon. Some means of exchanging minimal transaction data with peers
+ is still required.