Create Canon DSLR CR2 image statistics (exiftool & GNU Plot) and convert ML dual ISO CR2 files painlessly for post-processing
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
1.8 KiB

6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
  1. pkgname=kde-servicemenus-imagetools
  2. pkgver=1
  3. pkgrel=1
  4. pkgdesc="Useful combination of tools for processing various images (KDE5 Dolphin action)"
  5. arch=('any')
  6. license=('GPL')
  7. source=(
  8. imagetools_01_exif_statistics.sh
  9. imagetools_02_dualiso.sh
  10. imagetools_03_raw_resolution-baseline.sh
  11. imagetools_04_mlvdump.sh
  12. imagetools_05_mlvinfo.sh
  13. imagetools_06_exif_deletedata.sh
  14. imagetools_06_exif_deletedata_critical.sh
  15. imagetools_07_ale_stack.sh
  16. imagetools_09_mtime.sh
  17. 01_imagetools-statistics.desktop
  18. 02_imagetools-dng-cr2.desktop
  19. 03_imagetools-mlv.desktop
  20. 04_imagetools-jpg-png.desktop
  21. 05_imagetools-imagestack.desktop
  22. )
  23. #xwinkill) #Workaround for bug: https://sourceforge.net/p/gnuplot/bugs/1659/
  24. depends=(
  25. magiclantern-tools
  26. perl-image-exiftool
  27. ale
  28. dcraw
  29. netpbm
  30. gnuplot
  31. coreutils
  32. dolphin
  33. )
  34. md5sums=('a4e9c260727723ebfecf986586c34880'
  35. '758c9cc2ecc858350e041504f7d7ea12'
  36. 'cdc5c555acb2b96411e16cfa9ea2f25d'
  37. 'a7e0c36553ff59d182460a2108163798'
  38. '01756513818969a07ff61a1ee648106b'
  39. '75588a9f375ac5c6f6f245d12cc315d5'
  40. 'c294e69b9f6e714a307306fd4301fd61'
  41. '88cbadd0f290c737f7f0660a7029029d'
  42. '2b239ca3efac3713004635d29798b44d'
  43. '93bb82eec8ead83b5b5369822d44d780'
  44. 'a3e7650c1cbfd8d113f57f60d8699c6b'
  45. 'be883bb11a24c4f7ac6452f3cab6cf66'
  46. 'b42063458ada3002666280a5b06b1e92'
  47. '531f2b73b8514430a772a61a10de097f')
  48. package() {
  49. mkdir -p $pkgdir/usr/share/kservices5/ServiceMenus/
  50. for t in sh desktop; do
  51. for f in ${srcdir}/*.${t}; do
  52. cp ${f} $pkgdir/usr/share/kservices5/ServiceMenus/
  53. done
  54. done
  55. find $pkgdir/usr/share/kservices5/ServiceMenus/ -type f -iname "*.sh" -exec chmod 755 {} \;
  56. #chmod +x $pkgdir/usr/share/kservices5/ServiceMenus/xwinkill
  57. }