aboutsummaryrefslogtreecommitdiffstats
path: root/tools/debian-setup.sh
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss.ws@gmail.com>2013-09-13 21:06:08 +0000
committerJeff Morriss <jeff.morriss.ws@gmail.com>2013-09-13 21:06:08 +0000
commitd179a1b788cacb701ea217c30703745ce3f40d36 (patch)
treec924778e04788c3cb253244e11de4f79d6e013e4 /tools/debian-setup.sh
parent02cec4d51b57cfda2636131e89b3b80e4223a881 (diff)
Move debian-setup.sh into tools/
svn path=/trunk/; revision=52023
Diffstat (limited to 'tools/debian-setup.sh')
-rwxr-xr-xtools/debian-setup.sh20
1 files changed, 20 insertions, 0 deletions
diff --git a/tools/debian-setup.sh b/tools/debian-setup.sh
new file mode 100755
index 0000000000..b43f8810f3
--- /dev/null
+++ b/tools/debian-setup.sh
@@ -0,0 +1,20 @@
+#!/bin/sh
+# Setup development environment on Debian and derivatives such as Ubuntu
+#
+# $Id$
+#
+
+#
+# Install the packages required for Wireshark development.
+# (This includes GUI packages; making that optional, with a command-line
+# flag, is left as an exercise to the reader.)
+#
+# We drag in tools that might not be needed by all users; it's easier
+# that way.
+#
+apt-get install libgtk2.0-dev libpcap0.8-dev bison flex make automake \
+ libtool python perl
+
+#
+# Now arrange for optional support libraries - or just pull them all in?
+#