summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
Diffstat (limited to 'debian')
-rw-r--r--debian/README.Debian9
-rw-r--r--debian/changelog5
-rw-r--r--debian/compat1
-rw-r--r--debian/control14
-rw-r--r--debian/copyright27
-rw-r--r--debian/dirs3
-rwxr-xr-xdebian/rules46
7 files changed, 105 insertions, 0 deletions
diff --git a/debian/README.Debian b/debian/README.Debian
new file mode 100644
index 0000000..e1e27bf
--- /dev/null
+++ b/debian/README.Debian
@@ -0,0 +1,9 @@
1multitouch Xorg driver
2
3* Install the debian package
4
5* Restart X
6
7Enjoy!
8
9Henrik Rydberg <rydberg@euromail.se>
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..b6ef16b
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
1multitouch (0.1) unstable; urgency=low
2
3 * Add multitouch Xorg input driver
4
5 -- Henrik Rydberg <rydberg@euromail.se> Mon, 03 Nov 2008 00:47:37 +0100
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..7ed6ff8
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
5
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..c74798c
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,14 @@
1Source: multitouch
2Section: misc
3Priority: optional
4Maintainer: Henrik Rydberg <rydberg@euromail.se>
5Build-Depends: debhelper (>= 5)
6Standards-Version: 3.7.2
7Homepage: http://web.comhem.se/rydberg/Bits/
8
9Package: multitouch
10Architecture: any
11Depends: bash (>> 1.99)
12Description: Multitouch X input driver
13 This package is a multitouch Xorg input driver.
14
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..bf1dcd2
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,27 @@
1Source URL: http://web.comhem.se/rydberg/Bits/
2
3Upstream Author: Henrik Rydberg <rydberg@euromail.se>
4
5Copyright:
6 Copyright (C) 2008 Henrik Rydberg (rydberg@euromail.se)
7
8License:
9
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23
24Packaging:
25 Copyright (C) 2008 by Henrik Rydberg <rydberg@euromail.se>
26 released under GPL 2
27
diff --git a/debian/dirs b/debian/dirs
new file mode 100644
index 0000000..6611862
--- /dev/null
+++ b/debian/dirs
@@ -0,0 +1,3 @@
1usr/share/hal/fdi/information/10freedesktop
2usr/lib/hal
3
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..90568c9
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,46 @@
1#!/usr/bin/make -f
2# -*- makefile -*-
3
4# Uncomment this to turn on verbose mode.
5#export DH_VERBOSE=1
6
7build-arch:
8 dh_testdir
9 $(MAKE)
10
11build-indep:
12
13build: build-arch build-indep
14
15install:
16 dh_testdir
17 dh_testroot
18 dh_clean -k
19 dh_installdirs
20 $(MAKE) DESTDIR=$(CURDIR)/debian/hal-applesmc install
21
22binary-arch: build-arch install
23 dh_testdir
24 dh_testroot
25 dh_link
26 dh_strip
27 dh_compress
28 dh_fixperms
29 dh_installdeb
30 dh_shlibdeps
31 dh_gencontrol
32 dh_md5sums
33 dh_builddeb
34
35binary-indep: build-indep
36
37binary: binary-arch binary-indep
38
39clean:
40 dh_testdir
41 dh_testroot
42 $(MAKE) clean
43 dh_clean
44
45.PHONY: build-arch build-indep build install binary-arch binary-indep binary clean
46