summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcos <cos>2013-10-19 14:04:36 +0200
committercos <cos>2013-10-19 14:04:36 +0200
commit58a2d82575e2e562327db785638a860aca59bc33 (patch)
tree2e659ebd6c948408a4d124a764839d9e849df323
downloadkismet-preventor-58a2d82575e2e562327db785638a860aca59bc33.zip
Initial commit.HEADmaster
-rw-r--r--Makefile5
-rw-r--r--debian/changelog5
-rw-r--r--debian/compat1
-rw-r--r--debian/control13
-rw-r--r--debian/copyright4
-rwxr-xr-xdebian/rules13
-rwxr-xr-xkismet3
7 files changed, 44 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..daa57f2
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,5 @@
+all:
+
+install:
+ install -d $(DESTDIR)/usr/bin
+ install kismet $(DESTDIR)/usr/bin
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..d3ac67b
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+kismet-preventor (1.0) unstable; urgency=low
+
+ * Initial release. (Created using dh_make --native.)
+
+ -- cos <cos> Sat, 19 Oct 2013 13:20:34 +0200
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..45a4fb7
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+8
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..ffb5402
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,13 @@
+Source: kismet-preventor
+Priority: extra
+Maintainer: cos <cos>
+Build-Depends: debhelper (>= 8.0.0)
+Standards-Version: 3.9.4
+
+Package: kismet-preventor
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: Prevent kismet from running on hardware with broken drivers.
+Provides: kismet
+Conflicts: kismet
+Replaces: kismet
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..8d89f44
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,4 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+
+Files: *
+License: Public domain.
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..b760bee
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,13 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+%:
+ dh $@
diff --git a/kismet b/kismet
new file mode 100755
index 0000000..fb5de1b
--- /dev/null
+++ b/kismet
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+echo "Kismet would completely freeze this computer. Don't try running it again!"