O projeto que você está tirando não contém um setup.py
ou qualquer sistema de compilação, então a Snapcraft não sabe o que você quer instalar. Você pode usar setuptools e adicionar um setup.py
ao seu projeto, ou mantê-lo como está e dizer ao Snapcraft exatamente o que você deseja instalar, assim (observe o uso da palavra-chave install
):
name: phockup
version: '1.2.0'
summary: Photo and video sorting tool
description: |
Media sorting and backup tool to organize photos and videos from your camera in folders by year, month and day.
The software will collect all files from the input directory and transfer them to the output directory without
changing the files content. It will only rename the files and place them in the proper directory for the year, month and day.
grade: devel
confinement: devmode
apps:
phockup:
command: phockup
parts:
phockup:
plugin: python
source: https://github.com/ivandokov/phockup.git
source-tag: v1.2.0
install: |
mkdir -p $SNAPCRAFT_PART_INSTALL/bin
cp phockup.py $SNAPCRAFT_PART_INSTALL/bin/phockup