Skip to content

Commit

Permalink
Release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
TinoDidriksen committed Nov 20, 2019
1 parent 528d4c8 commit fb0d61b
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 79 deletions.
18 changes: 17 additions & 1 deletion AUTHORS
Original file line number Diff line number Diff line change
@@ -1 +1,17 @@
2017-2018, Marc Riera Irigoyen <[email protected]>
2017-2019, Marc Riera Irigoyen <[email protected]>
2012-2017, Xavi Ivars <[email protected]>
2007-2017, Francis M. Tyers <[email protected]>
2016, Bror Hultberg <[email protected]>
2007-2016, Mikel L. Forcada <[email protected]>
2009-2015, Kevin Brubeck Unhammer <[email protected]>
2014, Mariola Alaixa Gadea Ferrando <[email protected]>
2007-2014, Sergio Ortiz Rojas <[email protected]>
2007-2012, Jim O'Regan <[email protected]>
2012, Anthony J. Bentley <[email protected]>
2012, Hèctor Alòs i Font <[email protected]>
2011, Trond Trosterud <[email protected]>
2008-2011, Gema Ramírez Sánchez <[email protected]>
2007-2011, Mireia Ginestí Rosell <[email protected]>
2009, Oscar Senra Gómez <[email protected]>
2008, Jacob Nordfalk <[email protected]>
2007, Felipe Sánchez Martínez <[email protected]>
13 changes: 6 additions & 7 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -149,14 +149,14 @@ $(PREFIX2).rlx.bin: $(AP_SRC2)/$(LANG2).rlx.bin
cp $< $@

.deps/$(PREFIX1).cat.dix: .deps/$(PREFIX1).dix
python genvrdix.py cat $< >$@
apertium-genvrdix cat $< >$@

.deps/$(PREFIX1).val_gva.dix: .deps/$(PREFIX1).dix
python genvrdix.py val_gva $< >$@
apertium-genvrdix val_gva $< >$@

.deps/$(PREFIX1).val_uni.dix: .deps/$(PREFIX1).dix
python genvrdix.py val_uni $< >$@
apertium-genvrdix val_uni $< >$@

$(PREFIX1C).autobil.bin: .deps/$(PREFIX1).cat.dix
apertium-validate-dictionary $<
lt-comp --var-right=cat lr $< $@
Expand All @@ -170,10 +170,10 @@ $(PREFIX1U).autobil.bin: .deps/$(PREFIX1).val_uni.dix
lt-comp --var-right=val_uni lr $< $@

.deps/$(PREFIX1).eng.dix: .deps/$(PREFIX1).dix
python genvrdix.py eng $< >$@
apertium-genvrdix eng $< >$@

.deps/$(PREFIX1).eng_US.dix: .deps/$(PREFIX1).dix
python genvrdix.py eng_US $< >$@
apertium-genvrdix eng_US $< >$@

$(PREFIX2GB).autobil.bin: .deps/$(PREFIX1).eng.dix
apertium-validate-dictionary $<
Expand Down Expand Up @@ -321,4 +321,3 @@ test: all
@echo "The house" > .test-ref
@diff .test-ref .test-mt
@rm .test-ref .test-mt

9 changes: 4 additions & 5 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,27 +1,26 @@
AC_PREREQ(2.52)

AC_INIT([Apertium English-Catalan], [1.0.0], [[email protected]], [apertium-eng-cat], [http://wiki.apertium.org/wiki/Apertium-eng-cat])
AC_INIT([Apertium English-Catalan], [1.0.0], [[email protected]], [apertium-eng-cat], [http://wiki.apertium.org/wiki/Apertium-eng-cat])
AM_INIT_AUTOMAKE

AC_PROG_LN_S
AC_PROG_AWK

PKG_CHECK_MODULES(APERTIUM, apertium >= 3.6.0)
PKG_CHECK_MODULES(LTTOOLBOX, lttoolbox >= 3.5.0)
PKG_CHECK_MODULES(CG3, cg3 >= 1.3.0)
PKG_CHECK_MODULES(APERTIUM_LEX_TOOLS, apertium-lex-tools >= 0.2.2)
PKG_CHECK_MODULES(APERTIUM_SEPARABLE, apertium-separable >= 0.3.3)
PKG_CHECK_MODULES(APERTIUM_ANAPHORA, apertium-anaphora >= 0.0.2)

AC_PATH_PROGS(ZCAT, [gzcat zcat], [false])
AS_IF([test x$ZCAT = xfalse], [AC_MSG_ERROR([You don't have zcat nor gzcat installed])])

m4_ifdef([AP_CHECK_LING],[],[AC_MSG_ERROR([AP_CHECK_LING not defined, is apertium.m4 in ACLOCAL_PATH? See: http://wiki.apertium.org/wiki/Installation_troubleshooting])])

AP_CHECK_LING([1], [apertium-eng])
AP_CHECK_LING([2], [apertium-cat])
AP_CHECK_LING([1], [apertium-eng], [0.1.0])
AP_CHECK_LING([2], [apertium-cat], [2.8.0])

AP_MKINCLUDE

AC_CONFIG_FILES([Makefile])
AC_OUTPUT

66 changes: 0 additions & 66 deletions genvrdix.py

This file was deleted.

0 comments on commit fb0d61b

Please sign in to comment.