forked from ivandokov/phockup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsnapcraft.yaml
41 lines (37 loc) · 1.08 KB
/
snapcraft.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: phockup
version: latest
version-script: cat $SNAPCRAFT_STAGE/lib/phockup/phockup.py | grep 'version = ' | sed "s/.*'\(.*\)'/\1/"
summary: Photo and video sorting tool
description: |
Media sorting 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 copy them to the output directory without
changing the files content. It will only rename the files and place them in the proper directory for year, month and day.
confinement: strict
grade: stable
apps:
phockup:
command: phockup.sh
plugs: [home, removable-media, raw-usb]
parts:
files:
plugin: dump
source: .
organize:
phockup.py: lib/phockup/phockup.py
src/: lib/phockup/src/
license: lib/phockup/license
after: [integration]
integration:
plugin: nil
stage-packages:
- locales-all
- python3
- libimage-exiftool-perl
- libc-bin
- libbz2-dev
- liblzma5
- libncursesw5
- libreadline-dev
- libtinfo-dev
- libz-dev
- libdb5.3