Skip to content

Commit e3d4d9c

Browse files
committed
first try
1 parent 4953eac commit e3d4d9c

File tree

3 files changed

+69
-0
lines changed

3 files changed

+69
-0
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
nip2_*.snap
2+
snap/parts
3+
snap/prime
4+
snap/stage
15
INSTALL
26
test-driver
37
test/test-suite.log

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,3 +75,16 @@ Disclaimer: No guarantees of performance accompany this software, nor is any
7575
responsibility assumed on the part of the authors. Please read the licence
7676
agreement.
7777

78+
## snapcraft
79+
80+
to try out
81+
82+
cd snap
83+
snapcraft prime
84+
sudo snap try --devmode prime
85+
86+
see also
87+
88+
https://github.com/8none1/gedit310/blob/master/snapcraft.yaml
89+
https://tutorials.ubuntu.com/tutorial/create-first-snap
90+
https://build.snapcraft.io/

snap/snapcraft.yaml

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
name: nip2 # you probably want to 'snapcraft register <name>'
2+
version: '8.5.1'
3+
summary: An image-processing spreadsheet.
4+
description: |
5+
nip2 is half-way between a spreadsheet and a paint program.
6+
It's terrible for retouching photographs, but very handy for automating image
7+
processing tasks.
8+
9+
It can process multi-gigabyte images efficiently. It has good support for
10+
scientific image formats. It's much faster and more flexible than tools like
11+
ImageJ.
12+
13+
grade: devel # must be 'stable' to release into candidate/stable channels
14+
confinement: devmode # use 'strict' once you have the right plugs and slots
15+
16+
apps:
17+
nip2:
18+
command: desktop-launch nip2
19+
plugs: [x11, home, gsettings]
20+
21+
parts:
22+
vips-part:
23+
source: https://github.com/jcupitt/libvips
24+
source-branch: master
25+
source-type: git
26+
plugin: autotools
27+
build-packages:
28+
- gobject-introspection
29+
- intltool
30+
- libgirepository1.0-dev
31+
- libglib2.0-dev
32+
33+
nip2-part:
34+
source: https://github.com/jcupitt/nip2
35+
source-branch: master
36+
source-type: git
37+
plugin: autotools
38+
build-packages:
39+
- gobject-introspection
40+
- intltool
41+
- libgirepository1.0-dev
42+
- libglib2.0-dev
43+
- libgtk-2-dev
44+
- libx11-dev
45+
- libxml2-dev
46+
- flex
47+
- bison
48+
- libfftw3-dev
49+
- libgoffice-0.8-dev
50+
- libgsl-dev
51+
- libgvc6
52+

0 commit comments

Comments
 (0)