mirror of
https://git.freebsd.org/ports.git
synced 2025-07-17 01:09:24 -04:00
Port changes: * Changed to DISTVERSION * Now uses meson instead of configure/make * Added the MANPAGES option, manpage now is built by py-sphinx * Removed targets that are now done by meson PR: 226219 Submitted by: Zsolt Udvari <uzsolt@uzsolt.hu> (maintainer) Approved by: tcberner (mentor, implicit) Differential Revision: https://reviews.freebsd.org/D14531
24 lines
782 B
Text
24 lines
782 B
Text
--- meson.build.orig 2018-02-26 15:35:16 UTC
|
|
+++ meson.build
|
|
@@ -1,4 +1,4 @@
|
|
-project('mpc', 'c',
|
|
+project('musicpc', 'c',
|
|
version: '0.29',
|
|
default_options: [
|
|
'c_std=c99',
|
|
@@ -113,13 +113,13 @@ executable('mpc',
|
|
install: true
|
|
)
|
|
|
|
-install_data('AUTHORS', 'COPYING', 'NEWS', 'README.rst',
|
|
+install_data('AUTHORS', 'NEWS', 'README.rst',
|
|
install_dir : join_paths(get_option('datadir'), 'doc', meson.project_name()))
|
|
|
|
install_data(
|
|
'contrib/mpd-m3u-handler.sh', 'contrib/mpd-pls-handler.sh',
|
|
'contrib/mpc-completion.bash',
|
|
- install_dir: join_paths(get_option('datadir'), 'doc', meson.project_name(), 'contrib'))
|
|
+ install_dir: join_paths(get_option('datadir'), 'examples', meson.project_name() ))
|
|
|
|
if get_option('test')
|
|
check_dep = dependency('check')
|