Skip to content

Commit

Permalink
Cleanup, authors
Browse files Browse the repository at this point in the history
  • Loading branch information
TinoDidriksen committed Dec 3, 2019
1 parent f21ac2e commit 3fac774
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 34 deletions.
11 changes: 7 additions & 4 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
Copyright (C) 2008--2016 Francis Tyers <[email protected]>
Copyright (C) 2009--2017 Kevin Brubeck Unhammer <[email protected]>
Copyright (C) 2008--2017 Trond Trosterud <[email protected]>
Copyright (C) 2016--2017 Lene Antonsen <[email protected]>
2009-2019, Kevin Brubeck Unhammer <[email protected]>
2019, Anja Zawadzka Persvold <[email protected]>
2014-2019, Lene Antonsen <[email protected]>
2008-2019, Trond Trosterud <[email protected]>
2008-2017, Francis M. Tyers <[email protected]>
2017, Marina Kustova <[email protected]>
2016, Kartik Mistry <[email protected]>
12 changes: 6 additions & 6 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@ $(LANG1).automorf.att.gz: $(LANG1).automorf.bin
## Disambiguation rules
###############################################################################

$(LANG1).rlx.bin: $(BASENAME).$(LANG1).rlx $(CGCOMP)
$(CGCOMP) $< $@
$(LANG1).rlx.bin: $(BASENAME).$(LANG1).rlx
cg-comp $< $@

$(LANG1).seg.rlx.bin: $(BASENAME).$(LANG1).seg.rlx $(CGCOMP)
$(CGCOMP) $< $@
$(LANG1).seg.rlx.bin: $(BASENAME).$(LANG1).seg.rlx
cg-comp $< $@

$(LANG1).syn.rlx.bin: $(BASENAME).$(LANG1).syn.rlx $(CGCOMP)
$(CGCOMP) $< $@
$(LANG1).syn.rlx.bin: $(BASENAME).$(LANG1).syn.rlx
cg-comp $< $@

###############################################################################
## Distribution
Expand Down
28 changes: 4 additions & 24 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,32 +1,12 @@
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.


AC_PREREQ(2.52)

m4_define([required_apertium_version], [3.4.0])
m4_define([required_lttoolbox_version], [3.3.2])

AC_INIT([Apertium Norwegian Bokmål], [1.1.0], [[email protected]], [apertium-nob], [http://wiki.apertium.org/wiki/Apertium-nob])
AC_INIT([Apertium Norwegian Bokmål], [1.1.0], [[email protected]], [apertium-nob], [http://wiki.apertium.org/wiki/Apertium-nob])
AM_INIT_AUTOMAKE

AC_PROG_LN_S
AC_PROG_AWK

PKG_CHECK_MODULES(APERTIUM, apertium >= required_apertium_version)
PKG_CHECK_MODULES(LTTOOLBOX, lttoolbox >= required_lttoolbox_version)

AC_PATH_PROG([LTPRINT], [lt-print], [false], [$PATH$PATH_SEPARATOR$with_lt_print/bin])
AS_IF([test x$LTPRINT = xfalse], [AC_MSG_ERROR([You don't have lt-print installed])])

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])])

AC_PATH_PROG([CGPROC], [cg-proc], [false], [$PATH$PATH_SEPARATOR$with_cg_proc/bin])
AS_IF([test x$CGPROC = xfalse], [AC_MSG_ERROR([You don't have cg-proc installed])])

AC_PATH_PROG([PKGCONFIG], [pkg-config], [false], [$PATH$PATH_SEPARATOR$with_pkg_config/bin])
AS_IF([test x$PKGCONFIG = xfalse], [AC_MSG_ERROR([You don't have pkg-config installed])])
PKG_CHECK_MODULES(APERTIUM, apertium >= 3.6.0)
PKG_CHECK_MODULES(LTTOOLBOX, lttoolbox >= 3.5.0)
PKG_CHECK_MODULES(CG3, cg3 >= 1.3.0)

AP_MKINCLUDE

Expand Down

0 comments on commit 3fac774

Please sign in to comment.