-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
381f069
commit a170473
Showing
5 changed files
with
22 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,7 @@ | ||
* text=auto !eol | ||
/ACKNOWLEDGEMENTS -text | ||
/AUTHORS -text | ||
/COPYING -text | ||
/ChangeLog -text | ||
/Jenkinsfile -text | ||
/Makefile.am -text | ||
/NEWS -text | ||
/README -text | ||
/apertium-srd.pc.in -text | ||
/apertium-srd.post-srd.dix -text | ||
/apertium-srd.srd.acx -text | ||
/apertium-srd.srd.dix -text | ||
/apertium-srd.srd.rlx -text | ||
/autogen.sh -text | ||
/configure.ac -text | ||
/genvdix.py -text | ||
/modes.xml -text | ||
/srd-supervised.make -text | ||
/srd-unsupervised.make -text | ||
/srd.prob -text svneol=unset#unset | ||
/test_verbs.bash -text | ||
texts/cuento.vislcg.txt -text | ||
texts/puupankki/puupankki.srd.conllu -text | ||
* text eol=lf | ||
*.dix linguist-language=XML linguist-detectable=true | ||
*.lrx linguist-language=XML linguist-detectable=true | ||
*.lsx linguist-language=XML linguist-detectable=true | ||
*.tsx linguist-language=XML linguist-detectable=true | ||
*.t[[:digit:]]x linguist-language=XML linguist-detectable=true | ||
*.prob binary |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
Copyright (C) 2016--2016 Francis Tyers <[email protected]> | ||
Copyright (C) 2016--2021 Gianfranco Fronteddu <[email protected]> | ||
Copyright (C) 2016--2021 Hèctor Alòs i Font <[email protected]> | ||
2016-2021, Hèctor Alòs i Font <[email protected]> | ||
2016-2020, Gianfranco Fronteddu <[email protected]> | ||
2020, Nick Howell <[email protected]> | ||
2016-2018, Francis M. Tyers <[email protected]> | ||
2018, Sushain Cherivirala <[email protected]> | ||
2016-2017, Tino Didriksen <[email protected]> | ||
2016, Frankie Robertson <[email protected]> | ||
2016, Kevin Brubeck Unhammer <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,13 @@ | ||
AC_PREREQ(2.52) | ||
|
||
AC_INIT([apertium-srd], [1.3.0], [[email protected]]) | ||
AM_INIT_AUTOMAKE([apertium-srd], [1.3.0], no-define) | ||
AC_PROG_LN_S | ||
AC_INIT([apertium-srd], [1.3.0], [[email protected]]) | ||
AM_INIT_AUTOMAKE | ||
AC_PROG_AWK | ||
|
||
m4_define([required_apertium_version], [3.3.0]) | ||
m4_define([required_lttolbox_version], [3.3.0]) | ||
|
||
PKG_CHECK_MODULES(APERTIUM, apertium >= required_apertium_version) | ||
PKG_CHECK_MODULES(LTTOOLBOX, lttoolbox >= required_lttolbox_version) | ||
|
||
AC_PATH_PROG([CGCOMP], [cg-comp], [false], [$PATH$PATH_SEPARATOR$with_cg_comp/bin]) | ||
AS_IF([test x$CGCOMP = xfalse], [AC_MSG_ERROR([You don't have cg-comp installed])]) | ||
|
||
PKG_CHECK_MODULES(APERTIUM, apertium >= 3.7.1) | ||
PKG_CHECK_MODULES(LTTOOLBOX, lttoolbox >= 3.5.3) | ||
PKG_CHECK_MODULES(CG3, cg3 >= 1.3.2) | ||
|
||
AP_MKINCLUDE | ||
|
||
AC_OUTPUT([Makefile apertium-srd.pc]) | ||
|