Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: snap: add basic snap build #8

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,8 @@ _build_
*.swp
.lock-waf*
.intlcache
*.snap
/parts/
/prime/
/stage/
/snap/.snapcraft
85 changes: 85 additions & 0 deletions snap/snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
name: diodon
version: git
icon: data/icons/hicolor/scalable/apps/diodon.svg
summary: GTK+ Clipboard manager
description: |
Diodon is a lightweight clipboard manager for Linux written in Vala which
"aims to be the best integrated clipboard manager for the Gnome/Unity desktop".

Diodon features include Ubuntu indicator, clipboard sync (primary selection
and Ctrl+C / Ctrl+V clipboard) and a zeitgeist integration for an infinite
clipboard history.

grade: stable
confinement: devmode

apps:
diodon:
command: desktop-launch diodon
desktop: usr/share/applications/diodon.desktop
plugs:
- desktop
- desktop-legacy
- gsettings
- unity7
- wayland

slots:
diodon-gapp:
interface: dbus
bus: session
name: net.launchpad.Diodon

parts:
diodon:
plugin: waf
build-packages:
- gobject-introspection
- intltool
- libappindicator3-dev
- libgee-0.8-dev
- libglib2.0-dev
- libgtk-3-dev
- libpeas-dev
- libx11-dev
- libxtst-dev
- libzeitgeist-2.0-dev
- valac
- xvfb
configflags:
- --nocache
- --skiptests
- --notests
# XXX: This is an hack to have a kind of bind-mount with absolute prefix.
- --prefix=/snap/$SNAPCRAFT_PROJECT_NAME/current/usr
organize:
snap/diodon/current: .
stage-packages:
- libgirepository-1.0-1
- libpeas-1.0-0
- libxtst6
- libzeitgeist-2.0-0
install: |
set -x
export XDG_DATA_DIRS=$SNAPCRAFT_PART_INSTALL/usr/share

for dir in $SNAPCRAFT_PART_INSTALL/usr/share/icons/*/; do
if [ -f $dir/index.theme ]; then
gtk-update-icon-cache-3.0 -q $dir
fi
done
after:
- desktop-gtk3

desktop-gtk3:
stage: [-./usr/share/fonts/**]
install: |
set -x
export XDG_DATA_DIRS=$SNAPCRAFT_PART_INSTALL/usr/share
update-mime-database $SNAPCRAFT_PART_INSTALL/usr/share/mime

for dir in $SNAPCRAFT_PART_INSTALL/usr/share/icons/*/; do
if [ -f $dir/index.theme ]; then
gtk-update-icon-cache-3.0 -q $dir
fi
done
1 change: 1 addition & 0 deletions wscript
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ def configure(conf):
conf.check_cfg(package='gio-unix-2.0', uselib_store='GIOUNIX', atleast_version='2.32.0', mandatory=1, args='--cflags --libs')
conf.check_cfg(package='glib-2.0', uselib_store='GLIB', atleast_version='2.32.0', mandatory=1, args='--cflags --libs')
conf.check_cfg(package='gtk+-3.0', uselib_store='GTK', atleast_version='3.10.0', mandatory=1, args='--cflags --libs')
conf.check_cfg(package='x11', uselib_store='X11', atleast_version='1.2.0', mandatory=1, args='--cflags --libs')
conf.check_cfg(package='xtst', uselib_store='XTST', atleast_version='1.2.0', mandatory=1, args='--cflags --libs')
conf.check_cfg(package='zeitgeist-2.0', uselib_store='ZEITGEIST', atleast_version='0.9.14', mandatory=1, args='--cflags --libs')

Expand Down