Skip to content

Commit 33765cd

Browse files
committed
add missing meson file (issue #16)
1 parent b3b9365 commit 33765cd

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

debian/changelog

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
1+
com.github.ronnydo.colorpicker (0.9.4) xenial; urgency=medium
2+
3+
* Fix issue #16
4+
5+
-- Ronny Dobra <ronnydobra at arcor dot de> Thu, 26 Jun 2017 23:10:00 +0100
6+
17
com.github.ronnydo.colorpicker (0.9.3) xenial; urgency=medium
28

3-
* Color Picker now restores your recent window position, color format color history! (issue #10, issue #11 and issue #15)
9+
* Color Picker now restores your recent window position, color format and color history! (issue #10, issue #11 and issue #15)
410
* Minor icon changes
511

612
-- Ronny Dobra <ronnydobra at arcor dot de> Thu, 26 Jun 2017 22:45:00 +0100

meson/post_install.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/usr/bin/env python3
2+
3+
import os
4+
import subprocess
5+
6+
schemadir = os.path.join(os.environ['MESON_INSTALL_PREFIX'], 'share', 'glib-2.0', 'schemas')
7+
8+
if not os.environ.get('DESTDIR'):
9+
print('Compiling gsettings schemas...')
10+
subprocess.call(['glib-compile-schemas', schemadir])

0 commit comments

Comments
 (0)