[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#25836: [PATCH] gnu: Add gspell
From: |
Thomas Danckaert |
Subject: |
bug#25836: [PATCH] gnu: Add gspell |
Date: |
Thu, 30 Mar 2017 13:57:29 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/25.1 (gnu/linux) |
address@hidden (Ludovic Courtès) writes:
> Thanks for the patch. I’ve modified the package like this:
>
> [...]
> (inputs
> `(("enchant" ,enchant)
> ("iso-codes" ,iso-codes)
> ("gtk+" ,gtk+)
> ("glib" ,glib)))
> (native-inputs
> `(("glib" ,glib "bin")
> ("pkg-config" ,pkg-config)
> ("xmllint" ,libxml2)
>
> ;; For tests.
> ("xorg-server" ,xorg-server)
> ("aspell-dict-en" ,aspell-dict-en)))
Just for reference, for when we solve the dictionary issue:
While experimenting with this package and (unsuccessfully) trying to get
it to find aspell dictionaries, I also noticed we could add the
following native inputs:
+ ("docbook-xsl" ,docbook-xsl)
+ ("gobject-introspection" ,gobject-introspection)
+ ("gtk-doc" ,gtk-doc)
+ ("vala" ,vala)
("glib" ,glib "bin")
("pkg-config" ,pkg-config)
("xmllint" ,libxml2)
("xorg-server" ,xorg-server)))
and the following configure flag to build docs:
+ #:configure-flags '("--enable-gtk-doc")
I'm not really familiar with the gobject system, but I suppose
generating the bindings is useful? :)
Thomas