mirror of
https://github.com/lretq/fake-battery-linux.git
synced 2026-08-22 13:27:19 +00:00
initial commit; version 0.1.0
This commit is contained in:
Vendored
+6
@@ -0,0 +1,6 @@
|
||||
fake-battery-dkms (0.1.0-1) stable; urgency=low
|
||||
|
||||
* Initial release
|
||||
|
||||
-- Vincent Schweiger <vincent.schweiger@icloud.com> Fri, 21 Aug 2026 19:39:00
|
||||
+0200
|
||||
Vendored
+14
@@ -0,0 +1,14 @@
|
||||
Source: fake-battery-dkms
|
||||
Maintainer: Vincent Schweiger <vincent.schweiger@icloud.com>
|
||||
Section: kernel
|
||||
Priority: optional
|
||||
Build-Depends: debhelper-compat (= 13),
|
||||
dh-sequence-dkms,
|
||||
Standards-Version: 4.7.0
|
||||
Rules-Requires-Root: no
|
||||
|
||||
Package: fake-battery-dkms
|
||||
Architecture: all
|
||||
Depends: ${misc:Depends}
|
||||
Description: Fake Battery
|
||||
Creates a fake battery module
|
||||
Vendored
+1
@@ -0,0 +1 @@
|
||||
dkms.conf
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
#!/bin/sh
|
||||
|
||||
for dir in fake-battery.c Makefile; do
|
||||
echo ${dir} /usr/src/${PACKAGE_NAME}-${PACKAGE_VERSION}
|
||||
done
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
#!/usr/bin/make -f
|
||||
|
||||
PACKAGE_NAME=$(shell grep PACKAGE_NAME= dkms.conf | cut -d= -f2 | cut -d\" -f2)
|
||||
PACKAGE_VERSION=$(shell grep PACKAGE_VERSION= dkms.conf | cut -d= -f2 | cut -d\" -f2)
|
||||
export PACKAGE_NAME PACKAGE_VERSION
|
||||
|
||||
%:
|
||||
dh $@ --with dkms
|
||||
|
||||
# Nothing to configure, build or auto-install (this all happens after
|
||||
# installation using dkms)
|
||||
override_dh_auto_configure:
|
||||
override_dh_auto_build:
|
||||
override_dh_auto_install:
|
||||
Vendored
+1
@@ -0,0 +1 @@
|
||||
3.0 (quilt)
|
||||
Reference in New Issue
Block a user