first commit
This commit is contained in:
commit
a5d7fa6693
2
orig.source.txt
Normal file
2
orig.source.txt
Normal file
@ -0,0 +1,2 @@
|
||||
xpadneo-dkms_0.9.5.orig.tar.gz
|
||||
#https://github.com/atar-axis/xpadneo
|
17
xpadneo-0.9.5/debian/changelog
Normal file
17
xpadneo-0.9.5/debian/changelog
Normal file
@ -0,0 +1,17 @@
|
||||
xpadneo-dkms (0.9.5-5) kinetic; urgency=medium
|
||||
|
||||
* Change Section.
|
||||
|
||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Thu, 04 Oct 2022 17:50:00 +0300
|
||||
|
||||
xpadneo-dkms (0.9.5-1) kinetic; urgency=medium
|
||||
|
||||
* A few fixes.
|
||||
|
||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Thu, 04 Oct 2022 17:50:00 +0300
|
||||
|
||||
xpadneo-dkms (0.9.5-1) kinetic; urgency=medium
|
||||
|
||||
* Initial release.
|
||||
|
||||
-- Ward Nakchbandi <hotrod.master@hotmail.com> Thu, 04 Oct 2022 17:50:00 +0300
|
18
xpadneo-0.9.5/debian/control
Normal file
18
xpadneo-0.9.5/debian/control
Normal file
@ -0,0 +1,18 @@
|
||||
Source: xpadneo-dkms
|
||||
Section: games
|
||||
Priority: optional
|
||||
Maintainer: Ward Nakchbandi <hotrod.master@hotmail.com>
|
||||
Build-Depends: debhelper-compat (= 13),
|
||||
dh-autoreconf,
|
||||
quilt,
|
||||
dh-dkms,
|
||||
dkms
|
||||
Standards-Version: 4.6.1
|
||||
Homepage: https://github.com/atar-axis/xpadneo
|
||||
Rules-Requires-Root: no
|
||||
|
||||
Package: xpadneo-dkms
|
||||
Architecture: any
|
||||
Multi-Arch: same
|
||||
Depends: ${misc:Depends}, ${shlibs:Depends}, dkms, bluez
|
||||
Description: A DKMS package to provide XPADNEO an advanced Bluetooth Linux Driver for Xbox One Wireless Gamepad
|
13
xpadneo-0.9.5/debian/copyright
Normal file
13
xpadneo-0.9.5/debian/copyright
Normal file
@ -0,0 +1,13 @@
|
||||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||
Upstream-Name: xpadneo
|
||||
Upstream-Contact: Florian Dollinger <dollinger.florian@gmx.de>
|
||||
Source: https://github.com/atar-axis/xpadneo
|
||||
|
||||
Files: *
|
||||
Copyright: 2022 Florian Dollinger <dollinger.florian@gmx.de>
|
||||
License: GPL-3
|
||||
|
||||
Files: debian/*
|
||||
Copyright: 2022 Ward Nakchbandi <hotrod.master@hotmail.com>
|
||||
License: GPL-3
|
||||
|
1
xpadneo-0.9.5/debian/files
Normal file
1
xpadneo-0.9.5/debian/files
Normal file
@ -0,0 +1 @@
|
||||
xpadneo-dkms_0.9.5-5_source.buildinfo games optional
|
1
xpadneo-0.9.5/debian/patches/series
Normal file
1
xpadneo-0.9.5/debian/patches/series
Normal file
@ -0,0 +1 @@
|
||||
xpadneo-package-adapt.patch
|
21
xpadneo-0.9.5/debian/patches/xpadneo-package-adapt.patch
Normal file
21
xpadneo-0.9.5/debian/patches/xpadneo-package-adapt.patch
Normal file
@ -0,0 +1,21 @@
|
||||
diff -uraN a/Makefile b/Makefile
|
||||
--- a/Makefile 1970-01-01 02:00:00.000000000 +0200
|
||||
+++ b/Makefile 2022-10-04 19:12:45.651268524 +0300
|
||||
@@ -0,0 +1,12 @@
|
||||
+VERSION=0.9.5
|
||||
+
|
||||
+all:
|
||||
+ true
|
||||
+
|
||||
+install:
|
||||
+ sed 's/"@DO_NOT_CHANGE@"/"'"${VERSION}"'"/g' <hid-xpadneo/dkms.conf.in >hid-xpadneo/dkms.conf
|
||||
+ install -d $(DESTDIR)/usr/src/
|
||||
+ cp -r hid-xpadneo $(DESTDIR)/usr/src/
|
||||
+ install -d $(DESTDIR)/etc/modules-load.d
|
||||
+ ln -s /usr/src/hid-xpadneo $(DESTDIR)/usr/src/hid-xpadneo-"${VERSION}"
|
||||
+ cp -r modules-load-d-xpadneo.conf $(DESTDIR)/etc/modules-load.d/xpadneo.conf
|
||||
diff -uraN a/modules-load-d-xpadneo.conf b/modules-load-d-xpadneo.conf
|
||||
--- a/modules-load-d-xpadneo.conf 1970-01-01 02:00:00.000000000 +0200
|
||||
+++ b/modules-load-d-xpadneo.conf 2022-09-25 20:44:46.000000000 +0300
|
||||
@@ -0,0 +1 @@
|
||||
+hid_xpadneo
|
6
xpadneo-0.9.5/debian/postinst
Executable file
6
xpadneo-0.9.5/debian/postinst
Executable file
@ -0,0 +1,6 @@
|
||||
#!/bin/sh
|
||||
|
||||
set -e
|
||||
|
||||
dkms install -m hid-xpadneo/0.9.5
|
||||
|
6
xpadneo-0.9.5/debian/prerm
Executable file
6
xpadneo-0.9.5/debian/prerm
Executable file
@ -0,0 +1,6 @@
|
||||
#!/bin/sh
|
||||
|
||||
set -e
|
||||
|
||||
dkms remove -m hid-xpadneo/0.9.5
|
||||
|
4
xpadneo-0.9.5/debian/rules
Executable file
4
xpadneo-0.9.5/debian/rules
Executable file
@ -0,0 +1,4 @@
|
||||
#!/usr/bin/make -f
|
||||
|
||||
%:
|
||||
dh $@ --with quilt
|
1
xpadneo-0.9.5/debian/source/format
Normal file
1
xpadneo-0.9.5/debian/source/format
Normal file
@ -0,0 +1 @@
|
||||
3.0 (quilt)
|
BIN
xpadneo-dkms_0.9.5.orig.tar.gz
Normal file
BIN
xpadneo-dkms_0.9.5.orig.tar.gz
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user