diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 21:33:56 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 21:33:56 +0000 |
commit | 937be0ca5dd3de57637750b3d97fe14446398616 (patch) | |
tree | 05ec0b7853c4730d72628c094b7602c0aa089ea1 | |
parent | Building vim with python3. (diff) | |
download | vim-937be0ca5dd3de57637750b3d97fe14446398616.tar.xz vim-937be0ca5dd3de57637750b3d97fe14446398616.zip |
Building vim-gtk3 without ruby.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
-rwxr-xr-x | debian/rules | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/debian/rules b/debian/rules index cbf982b..8117277 100755 --- a/debian/rules +++ b/debian/rules @@ -21,17 +21,8 @@ ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS))) MAKEFLAGS += -j$(NUMJOBS) endif -ifneq (,$(filter pkg.vim.noruby,$(DEB_BUILD_PROFILES))) - RUBY_SUBSTVARS = -Vvim:Ruby-Provides= -Vvim:Ruby-Desc= - RUBY_CFGFLAGS = --disable-ruby -else ifneq (,$(filter alpha ia64,$(DEB_HOST_ARCH))) - # Disable ruby on these architectures at the request of porters (c.f., #983308) - RUBY_SUBSTVARS = -Vvim:Ruby-Provides= -Vvim:Ruby-Desc= - RUBY_CFGFLAGS = --disable-rubyinterp -else - RUBY_SUBSTVARS = -Vvim:Ruby-Provides='vim-ruby (= $${binary:Version})' -Vvim:Ruby-Desc=' Ruby,' - RUBY_CFGFLAGS = --enable-rubyinterp -endif +RUBY_SUBSTVARS = -Vvim:Ruby-Provides= -Vvim:Ruby-Desc= +RUBY_CFGFLAGS = --disable-ruby CFGFLAGS = --prefix=/usr --mandir='$${prefix}'/share/man --without-local-dir CFGFLAGS += --with-modified-by="$(BUILDER)" |