aboutsummaryrefslogtreecommitdiffstats
path: root/debian-setup.sh
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2013-02-04 00:29:27 +0000
committerGuy Harris <guy@alum.mit.edu>2013-02-04 00:29:27 +0000
commitf2beeac1d09b518944ace06c3cd909cee4bb9f91 (patch)
treec48bd8b439f144cb2275ff9a1c444eb4dfa76a5c /debian-setup.sh
parent6549fbbad7f6e2bd8cb05b63e4fe7b98d77468d0 (diff)
downloadwireshark-f2beeac1d09b518944ace06c3cd909cee4bb9f91.tar.gz
wireshark-f2beeac1d09b518944ace06c3cd909cee4bb9f91.tar.bz2
wireshark-f2beeac1d09b518944ace06c3cd909cee4bb9f91.zip
Try creating a script for Debian and derivatives that will grab the
packages necessary for Wireshark development, using apt-get. svn path=/trunk/; revision=47460
Diffstat (limited to 'debian-setup.sh')
-rwxr-xr-xdebian-setup.sh20
1 files changed, 20 insertions, 0 deletions
diff --git a/debian-setup.sh b/debian-setup.sh
new file mode 100755
index 0000000000..b43f8810f3
--- /dev/null
+++ b/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?
+#