EmixamPP / linux-enable-ir-emitter

Provides support for infrared cameras that are not directly enabled out-of-the box.
MIT License
243 stars 21 forks source link

Complete dependencies #26

Closed supdrewin closed 3 years ago

supdrewin commented 3 years ago
diff --git a/AUR/PKGBUILD b/AUR/PKGBUILD
index e53cc8d..8bd2fd5 100644
--- a/AUR/PKGBUILD
+++ b/AUR/PKGBUILD
@@ -5,19 +5,15 @@
 pkgname=linux-enable-ir-emitter
 pkgver=20210725.0
 pkgrel=1
+arch=(x86_64)
 pkgdesc='Enables infrared cameras that are not directly enabled out-of-the box.'
 url='https://github.com/EmixamPP/linux-enable-ir-emitter'
-license=('MIT')
-makedepends=('git')
-depends=(
-    'python'
-    'python-opencv'
-    'python-yaml'
-)
-optdepends=(
-    'python-pyshark: full configuration setup support'
-)
-arch=('x86_64')
+license=(MIT)
+provides=(linux-enable-ir-emitter)
+conflicts=(chicony-ir-toggle)
+makedepends=(gcc git make)
+depends=(python python-opencv python-yaml systemd)
+optdepends=('python-pyshark: full configuration setup support')
 source=("git+https://github.com/EmixamPP/linux-enable-ir-emitter")
 sha256sums=('SKIP')
EmixamPP commented 3 years ago

Perfect ! Thank you 😃

komex commented 3 years ago

Is systemd is really a depends for this package?

supdrewin commented 3 years ago

Is systemd is really a depends for this package?

Hi, @komex. Although base group includes systemd, the systemd is really a depends for this package since the service works request systemd.

komex commented 3 years ago

Is systemd is really a depends for this package?

Hi, @komex. Although base group includes systemd, the systemd is really a depends for this package since the service works request systemd.

Hi, @supdrewin. Yes, project contains the systemd service, but I can run emitter without systemd and it is ok. I think, systemd must be in optdepends.

supdrewin commented 3 years ago

Hi, @supdrewin. Yes, project contains the systemd service, but I can run emitter without systemd and it is ok. I think, systemd must be in optdepends.

Hi, @komex. I'm sorry, my careless.