Added package wl1251-maemo which contains source code of packet injection wl1251... wl1251-maemo-0.2
authorPali Rohár <pali.rohar@gmail.com>
Tue, 3 Jul 2012 12:41:02 +0000 (14:41 +0200)
committerPali Rohár <pali.rohar@gmail.com>
Thu, 5 Jul 2012 14:02:07 +0000 (16:02 +0200)
wl1251-maemo/debian/changelog [new file with mode: 0644]
wl1251-maemo/debian/compat [new file with mode: 0644]
wl1251-maemo/debian/control [new file with mode: 0644]
wl1251-maemo/debian/rules [new file with mode: 0755]

diff --git a/wl1251-maemo/debian/changelog b/wl1251-maemo/debian/changelog
new file mode 100644 (file)
index 0000000..c60c187
--- /dev/null
@@ -0,0 +1,5 @@
+wl1251-maemo (0.2) unstable; urgency=low
+
+  * Initial release
+
+ -- Pali Rohár <pali.rohar@gmail.com>  Sun, 01 Jul 2012 21:11:26 +0200
diff --git a/wl1251-maemo/debian/compat b/wl1251-maemo/debian/compat
new file mode 100644 (file)
index 0000000..7ed6ff8
--- /dev/null
@@ -0,0 +1 @@
+5
diff --git a/wl1251-maemo/debian/control b/wl1251-maemo/debian/control
new file mode 100644 (file)
index 0000000..32eaef6
--- /dev/null
@@ -0,0 +1,20 @@
+Source: wl1251-maemo
+Section: devel
+Priority: optional
+Maintainer: Pali Rohár <pali.rohar@gmail.com>
+Build-Depends: debhelper (>= 5)
+Standards-Version: 3.9.2
+Homepage: http://david.gnedt.eu/blog/wl1251/
+
+Package: wl1251-maemo-source
+Architecture: all
+Description: Source code of bleeding-edge wl1251 driver
+ This package contains a bleeding-edge wl1251 driver for use with Maemo
+ Fremantle on the Nokia N900.
+ .
+ It incorporates nearly all features found in the stock wl12xx driver used
+ in Maemo Fremantle, adds some bugfixes to wl1251 and also provides some
+ unique features like packet injection.
+ .
+ This package contains only source code of driver. Package is used by
+ source kernel packages which build driver at kernel compile time.
diff --git a/wl1251-maemo/debian/rules b/wl1251-maemo/debian/rules
new file mode 100755 (executable)
index 0000000..8e15b8e
--- /dev/null
@@ -0,0 +1,21 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+build:
+
+clean:
+       dh_testdir
+       dh_clean
+
+binary:
+       dh_testdir
+       dh_clean
+       mkdir -p debian/wl1251-maemo-source/usr/src
+       cp *.tar.bz2 debian/wl1251-maemo-source/usr/src/
+       dh_fixperms
+       dh_installdeb
+       dh_gencontrol
+       dh_md5sums
+       dh_builddeb
+
+.PHONY: build clean binary