Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
zathura-pdf-poppler
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
pwmt
zathura-pdf-poppler
Commits
3a34e578
Commit
3a34e578
authored
Jun 29, 2018
by
Sebastian Ramacher
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'mr-origin-2' into develop
parents
bd75b29c
50afb3a7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletion
+9
-1
meson.build
meson.build
+6
-1
meson_options.txt
meson_options.txt
+3
-0
No files found.
meson.build
View file @
3a34e578
...
...
@@ -13,6 +13,11 @@ prefix = get_option('prefix')
datadir = get_option('datadir')
metainfodir = join_paths(datadir, 'metainfo')
desktopdir = join_paths(datadir, 'applications')
if get_option('plugindir') == ''
plugindir = zathura.get_pkgconfig_variable('plugindir')
else
plugindir = get_option('plugindir')
endif
# required dependencies
zathura = dependency('zathura', version: '>=0.3.9')
...
...
@@ -62,7 +67,7 @@ pdf = shared_module('pdf-poppler',
dependencies: build_dependencies,
c_args: defines + flags,
install: true,
install_dir:
zathura.get_pkgconfig_variable('plugindir')
install_dir:
plugindir
)
subdir('data')
meson_options.txt
0 → 100644
View file @
3a34e578
option('plugindir',
type: 'string', value: '',
description: 'Install to a different location than Zathuras plugin directory')
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment