diff --git a/MAINTAINERS.md b/MAINTAINERS.md new file mode 100644 --- /dev/null +++ b/MAINTAINERS.md @@ -0,0 +1,5 @@ +This file is used to indicate responsibility for the maintenance of this package. Individuals on this list should be the sole modifiers of the package, excluding cases where the Solus Team may need to perform necessary rebuilds, upgrades, or security fixes. This list should not be used for any direct contact usage. If you believe this package requires a package update, follow documentation from https://getsol.us/articles/packaging/request-a-package-update/en/. In the event this package no longer becomes sufficiently maintained, Core Team reserves the right to request a new maintainer or remove this package from the repository. + +- Campbell Jones + - IRC: serebit + - Email: dev@serebit.com diff --git a/Makefile b/Makefile new file mode 100644 --- /dev/null +++ b/Makefile @@ -0,0 +1 @@ +include ../Makefile.common diff --git a/abi_used_libs b/abi_used_libs new file mode 100644 --- /dev/null +++ b/abi_used_libs @@ -0,0 +1,10 @@ +libQt5Core.so.5 +libQt5Gui.so.5 +libQt5Widgets.so.5 +libc.so.6 +libgcc_s.so.1 +libhidapi-hidraw.so.0 +libm.so.6 +libpthread.so.0 +libstdc++.so.6 +libusb-1.0.so.0 diff --git a/files/openrgb.conf b/files/openrgb.conf new file mode 100644 --- /dev/null +++ b/files/openrgb.conf @@ -0,0 +1,3 @@ +#loads the i2c-dev kernel module on boot, needed by openrgb + +i2c-dev diff --git a/files/openrgb.desktop b/files/openrgb.desktop new file mode 100644 --- /dev/null +++ b/files/openrgb.desktop @@ -0,0 +1,8 @@ +[Desktop Entry] +Version=1.1 +Type=Application +Name=OpenRGB +Comment=A program to control RGB devices +Icon=openrgb +Exec=/usr/bin/openrgb +Categories=System;Monitor;HardwareSettings diff --git a/files/openrgb.service b/files/openrgb.service new file mode 100644 --- /dev/null +++ b/files/openrgb.service @@ -0,0 +1,10 @@ +[Unit] +Description=OpenRGB daemon + +[Service] +Type=simple +ExecStart=/usr/bin/openrgb --server +Restart=on-failure + +[Install] +WantedBy=multi-user.target diff --git a/package.yml b/package.yml new file mode 100644 --- /dev/null +++ b/package.yml @@ -0,0 +1,27 @@ +name : openrgb +version : '0.5' +release : 1 +source : + - https://gitlab.com/CalcProgrammer1/OpenRGB/-/archive/release_0.5/OpenRGB-release_0.5.tar.gz : e227dedfe0c3aa8f3bcb0c4149aa5feb1db4b0429a151423d74c0103c55d7d26 +license : GPL-2.0-only +component : system.utils +homepage : https://gitlab.com/CalcProgrammer1/OpenRGB/ +summary : Open source RGB lighting control that doesn't depend on manufacturer software +description: | + An easy-to-use open source software program and library for accessing and controlling RGB lights on various PC hardware including motherboards, RAM modules, graphics cards, cooling devices, and peripherals. +builddeps : + - pkgconfig(Qt5Core) + - pkgconfig(hidapi-libusb) + - pkgconfig(libusb-1.0) +setup : | + %qmake OpenRGB.pro +build : | + %make +install : | + install -Dm 00755 $workdir/openrgb $installdir/usr/bin/openrgb + install -Dm 00644 $workdir/qt/OpenRGB.png $installdir/usr/share/icons/hicolor/128x128/apps/openrgb.png + install -Dm 00644 $workdir/60-openrgb.rules $installdir/%libdir%/udev/rules.d/60-openrgb.rules + + install -Dm 00644 $pkgfiles/openrgb.desktop $installdir/usr/share/applications/openrgb.desktop + install -Dm 00644 $pkgfiles/openrgb.service $installdir/%libdir%/systemd/system/openrgb.service + install -Dm 00644 $pkgfiles/openrgb.conf $installdir/%libdir%/modules-load.d/openrgb.conf diff --git a/pspec_x86_64.xml b/pspec_x86_64.xml new file mode 100644 --- /dev/null +++ b/pspec_x86_64.xml @@ -0,0 +1,40 @@ + + + openrgb + https://gitlab.com/CalcProgrammer1/OpenRGB/ + + Campbell Jones + dev@serebit.com + + GPL-2.0-only + system.utils + Open source RGB lighting control that doesn't depend on manufacturer software + An easy-to-use open source software program and library for accessing and controlling RGB lights on various PC hardware including motherboards, RAM modules, graphics cards, cooling devices, and peripherals. + + https://getsol.us/sources/README.Solus + + + openrgb + Open source RGB lighting control that doesn't depend on manufacturer software + An easy-to-use open source software program and library for accessing and controlling RGB lights on various PC hardware including motherboards, RAM modules, graphics cards, cooling devices, and peripherals. + + system.utils + + /usr/bin/openrgb + /usr/lib64/modules-load.d/openrgb.conf + /usr/lib64/systemd/system/openrgb.service + /usr/lib64/udev/rules.d/60-openrgb.rules + /usr/share/applications/openrgb.desktop + /usr/share/icons/hicolor/128x128/apps/openrgb.png + + + + + 2020-12-16 + 0.5 + Packaging update + Campbell Jones + dev@serebit.com + + + \ No newline at end of file