-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
115 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -348,3 +348,6 @@ ASALocalRun/ | |
healthchecksdb | ||
|
||
# End of https://www.gitignore.io/api/visualstudio | ||
|
||
# Debian package build | ||
obj-*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
.debhelper/ | ||
debhelper-build-stamp | ||
files | ||
*.substvars | ||
ryzenadj/ | ||
libryzenadj-dev/ | ||
libryzenadj0/ | ||
tmp/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
ryzenadj (0.11.1-1) unstable; urgency=medium | ||
|
||
New revision | ||
|
||
-- Johan Källström <[email protected]> Sat, 27 Aug 2022 14:02:53 +0200 | ||
|
||
ryzenadj (0.11.0-1) unstable; urgency=medium | ||
|
||
initial debian package release | ||
|
||
-- Johan Källström <[email protected]> Sat, 27 Mar 2022 08:18:45 +0100 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
Source: ryzenadj | ||
Section: admin | ||
Priority: optional | ||
Maintainer: Johan Källström <[email protected]> | ||
Uploaders: Johan Källström <[email protected]>, | ||
Build-Depends: cmake (>= 3.0~), | ||
debhelper-compat (= 13), | ||
libpci-dev | ||
Standards-Version: 4.6.0 | ||
Homepage: https://github.com/FlyGoat/RyzenAdj/ | ||
Vcs-Browser: https://github.com/FlyGoat/RyzenAdj/ | ||
Vcs-Git: https://github.com/FlyGoat/RyzenAdj.git | ||
Rules-Requires-Root: no | ||
|
||
|
||
Package: ryzenadj | ||
Architecture: any | ||
Depends: ${misc:Depends}, | ||
${shlibs:Depends}, | ||
libryzenadj0 (= ${binary:Version}), | ||
Description: Adjust power management settings for Ryzen Mobile Processors. | ||
This is a commandline tool that allows you to adjust power management | ||
settings for Ryzen Mobile Processors. | ||
|
||
Package: libryzenadj0 | ||
Architecture: any | ||
Depends: ${misc:Depends}, | ||
${shlibs:Depends}, | ||
Description: power management library for Ryzen Mobile Processors. | ||
This library provides APIs to Adjust power management settings for | ||
Ryzen Mobile Processors. | ||
|
||
Package: libryzenadj-dev | ||
Architecture: any | ||
Depends: ${misc:Depends}, | ||
libryzenadj0 (= ${binary:Version}) | ||
Description: power management library - development files | ||
for Ryzen Mobile Processors. | ||
This library provides APIs to Adjust power management settings for | ||
Ryzen Mobile Processors. | ||
. | ||
This package contains the files needed for developing applications that | ||
use libryzenadj. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ | ||
Upstream-Contact: [email protected] | ||
Upstream-Name: ryzenadj | ||
Source: https://github.com/FlyGoat/RyzenAdj/ | ||
|
||
Files: * | ||
Copyright: 2019-2022, Jiaxun Yang <[email protected]> | ||
License: LGPL-3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
usr/include/* | ||
usr/lib/*/libryzenadj.so | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
usr/lib/*/libryzenadj.so.* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/usr/bin/make -f | ||
|
||
DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH) | ||
|
||
export DEB_BUILD_MAINT_OPTIONS=hardening=+all | ||
export DH_VERBOSE = 1 | ||
|
||
%: | ||
dh $@ | ||
|
||
override_dh_auto_configure: | ||
dh_auto_configure -- \ | ||
-DCMAKE_LIBRARY_PATH=$(DEB_HOST_MULTIARCH) \ | ||
-DCMAKE_BUILD_TYPE=RelWithDebInfo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
usr/bin/ryzenadj |