1
0
Fork 0

[meson] Generate elinks.spec and changes in contrib

This commit is contained in:
Witold Filipczyk 2020-09-07 17:48:37 +02:00
parent 34d1adbf8c
commit 2a16aa91fe
5 changed files with 7 additions and 5 deletions

View File

@ -1868,7 +1868,6 @@ AC_CONFIG_FILES([ \
Makefile.config \
contrib/elinks.spec \
contrib/lua/hooks.lua \
contrib/conv/w3m2links.awk \
doc/Doxyfile \
doc/man/man1/elinks.1 \
src/intl/gettext/ref-add.sed \

View File

@ -1 +0,0 @@
w3m2links.awk

View File

@ -1,4 +1,4 @@
#!@AWK@ -f
#!/bin/awk -f
#
# This converts w3m bookmarks.html to ELinks bookmarks.lst used by the Lua
# based bookmarks handling (NOT the internal one!).

View File

@ -193,7 +193,7 @@ rm -rf $RPM_BUILD_ROOT
* Thu Apr 04 2002 pasky@ucw.cz
- Changed some stuff so that it's now ready for inclusion..
* Sat Mar 16 2002 zimon (ät) iki fi
* Sat Mar 16 2002 zimon (ät) iki fi
- Made my own elinks.spec file as the one I found with Google didn't work how
I wanted

View File

@ -708,7 +708,10 @@ endif
conf_data.set('ICONV_CONST', true)
conf_data.set('CONFDIR', get_option('prefix') / get_option('sysconfdir')/'elinks')
sysconfdir = get_option('prefix') / get_option('sysconfdir')/'elinks'
conf_data.set('CONFDIR', sysconfdir)
conf_data.set('sysconfdir', sysconfdir)
conf_data.set('SOMETHING', '@SOMETHING@')
conf_data.set('LIBDIR', get_option('prefix') / 'lib')
conf_data.set('LOCALEDIR', get_option('prefix') / 'share/locale')
@ -750,3 +753,4 @@ configure_file(input : 'config2.h.in',
subdir('po')
subdir('src')
subdir('contrib')