-
-
Notifications
You must be signed in to change notification settings - Fork 22
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
2 changed files
with
43 additions
and
33 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 |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
# Contributor: Antoine Bertin <[email protected]> | ||
|
||
pkgname=linux-enable-ir-emitter | ||
pkgver=2.0.0 | ||
pkgver=2.0.1 | ||
pkgrel=1 | ||
epoch=1 | ||
pkgdesc="Enables infrared cameras that are not directly enabled out-of-the box." | ||
|
@@ -18,6 +18,7 @@ depends=( | |
'python' | ||
'python-opencv' | ||
'python-yaml' | ||
'nano' | ||
) | ||
optdepends=( | ||
'python-pyshark: full configuration setup support' | ||
|
@@ -35,12 +36,12 @@ package() { | |
|
||
install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}" | ||
|
||
install -Dm 755 sources/enable-ir-emitter "${pkgdir}"/usr/lib/linux-enable-ir-emitter/enable-ir-emitter | ||
install -Dm 644 sources/config.yaml "${pkgdir}"/usr/lib/linux-enable-ir-emitter/config.yaml | ||
install -Dm 755 sources/*.py "${pkgdir}"/usr/lib/linux-enable-ir-emitter/ | ||
install -Dm 755 sources/enable-ir-emitter -t "${pkgdir}"/usr/lib/linux-enable-ir-emitter/ | ||
install -Dm 644 sources/config.yaml -t "${pkgdir}"/usr/lib/linux-enable-ir-emitter/ | ||
install -Dm 755 sources/*.py -t "${pkgdir}"/usr/lib/linux-enable-ir-emitter/ | ||
|
||
install -Dm 644 sources/linux-enable-ir-emitter.service "${pkgdir}"/usr/lib/systemd/system/linux-enable-ir-emitter.service | ||
install -Dm 644 sources/linux-enable-ir-emitter.service -t "${pkgdir}"/usr/lib/systemd/system/ | ||
|
||
install -dm 755 ${pkgdir}/usr/bin/ | ||
ln -s /usr/lib/linux-enable-ir-emitter/linux-enable-ir-emitter.py ${pkgdir}/usr/bin/linux-enable-ir-emitter | ||
ln -fs /usr/lib/linux-enable-ir-emitter/linux-enable-ir-emitter.py ${pkgdir}/usr/bin/linux-enable-ir-emitter | ||
} |
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