Exiftool als Abhängigkeit für die Snap-App

Exiftool als Abhängigkeit für die Snap-App

Ich kann nicht herausfinden, wie ich hinzufügenExiftoolals Abhängigkeit zu meiner Snap-Anwendung.

Hier ist meine snapcraft.yaml:

name: phockup
version: '1.2.0'
summary: Photo and video sorting tool
description: |
  ...

grade: devel
confinement: devmode

apps:
  phockup:
    command: phockup

parts:
  phockup:
    source: https://github.com/ivandokov/phockup.git
    source-tag: v1.2.0
    plugin: python
    install: |
      mkdir -p $SNAPCRAFT_PART_INSTALL/bin
      cp phockup.py $SNAPCRAFT_PART_INSTALL/bin/phockup

Jede Hilfe wird geschätzt!

Antwort1

Fügen Sie als Teil Ihres „Phockup“-Teils einen Abschnitt hinzu.

stage-packages:
  - exiftool

Dadurch wird Exiftool in Ihrem Snap bereitgestellt.

verwandte Informationen