[packages/opengrm-ngram] - new

qboosh qboosh at pld-linux.org
Sat Mar 10 15:21:26 CET 2018


commit 2c8e85eb480c9ae4f66c8fa5729532f1fcffc690
Author: Jakub Bogusz <qboosh at pld-linux.org>
Date:   Sat Mar 10 15:23:58 2018 +0100

    - new

 opengrm-ngram-link.patch |   9 ++++
 opengrm-ngram.spec       | 133 +++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 142 insertions(+)
---
diff --git a/opengrm-ngram.spec b/opengrm-ngram.spec
new file mode 100644
index 0000000..c26da73
--- /dev/null
+++ b/opengrm-ngram.spec
@@ -0,0 +1,133 @@
+#
+# Conditional build:
+%bcond_without	static_libs	# static libraries
+#
+Summary:	OpenGrm NGram library - making and modifying n-gram language models
+Summary(pl.UTF-8):	Biblioteka OpenGrm NGram - tworzenie i modyfikowanie modeli n-gramowych języków
+Name:		opengrm-ngram
+Version:	1.3.3
+Release:	1
+License:	Apache v2.0
+Group:		Libraries
+#Source0Download: http://www.openfst.org/twiki/bin/view/GRM/NGramDownload
+Source0:	http://www.openfst.org/twiki/pub/GRM/NGramDownload/%{name}-%{version}.tar.gz
+# Source0-md5:	e8196908b433567a9f37d858bdc8aa1c
+Patch0:		%{name}-link.patch
+URL:		http://www.openfst.org/twiki/bin/view/GRM/NGramLibrary
+BuildRequires:	autoconf >= 2.50
+BuildRequires:	automake
+BuildRequires:	libstdc++-devel >= 6:4.7
+BuildRequires:	libtool >= 2:1.5
+BuildRequires:	openfst-devel >= 1.5.2
+BuildRoot:	%{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+The OpenGrm NGram library is used for making and modifying n-gram
+language models encoded as weighted finite-state transducers (FSTs).
+It makes use of functionality in the OpenFst library to create, access
+and manipulate n-gram models.
+
+%description -l pl.UTF-8
+Biblioteka OpenGrm NGram służy do tworzenia i modyfikowania modeli
+n-gramowych języków zakodowanych jako automaty skończone z wyjściem
+(FST) i wagami. Do tworzenia, dostępu i operowania na modelach
+n-gramowych wykorzystuje bibliotekę OpenFst.
+
+%package devel
+Summary:	Header files for OpenGrm NGram library
+Summary(pl.UTF-8):	Pliki nagłówkowe biblioteki OpenGrm NGram
+Group:		Development/Libraries
+Requires:	%{name} = %{version}-%{release}
+Requires:	libstdc++-devel >= 6:4.7
+Requires:	openfst-devel >= 1.5.2
+
+%description devel
+Header files for OpenGrm NGram library.
+
+%description devel -l pl.UTF-8
+Pliki nagłówkowe biblioteki OpenGrm NGram.
+
+%package static
+Summary:	Static OpenGrm NGram library
+Summary(pl.UTF-8):	Statyczna biblioteka OpenGrm NGram
+Group:		Development/Libraries
+Requires:	%{name}-devel = %{version}-%{release}
+
+%description static
+Static OpenGrm NGram library.
+
+%description static -l pl.UTF-8
+Statyczna biblioteka OpenGrm NGram.
+
+%prep
+%setup -q
+%patch0 -p1
+
+%build
+%{__libtoolize}
+%{__aclocal} -I m4
+%{__autoconf}
+%{__autoheader}
+%{__automake}
+%configure \
+	%{?with_static_libs:--enable-static}
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%{__make} install \
+	DESTDIR=$RPM_BUILD_ROOT
+
+# dlopened module
+%{__rm} $RPM_BUILD_ROOT%{_libdir}/hist-arc.la \
+	%{?with_static_libs:$RPM_BUILD_ROOT%{_libdir}/hist-arc.a}
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post	-p /sbin/ldconfig
+%postun	-p /sbin/ldconfig
+
+%files
+%defattr(644,root,root,755)
+%doc AUTHORS NEWS README
+%attr(755,root,root) %{_bindir}/ngramapply
+%attr(755,root,root) %{_bindir}/ngramcontext
+%attr(755,root,root) %{_bindir}/ngramcount
+%attr(755,root,root) %{_bindir}/ngramhisttest
+%attr(755,root,root) %{_bindir}/ngraminfo
+%attr(755,root,root) %{_bindir}/ngrammake
+%attr(755,root,root) %{_bindir}/ngrammarginalize
+%attr(755,root,root) %{_bindir}/ngrammerge
+%attr(755,root,root) %{_bindir}/ngramperplexity
+%attr(755,root,root) %{_bindir}/ngramprint
+%attr(755,root,root) %{_bindir}/ngramrandgen
+%attr(755,root,root) %{_bindir}/ngramrandtest
+%attr(755,root,root) %{_bindir}/ngramread
+%attr(755,root,root) %{_bindir}/ngramshrink
+%attr(755,root,root) %{_bindir}/ngramsort
+%attr(755,root,root) %{_bindir}/ngramsplit
+%attr(755,root,root) %{_bindir}/ngramsymbols
+%attr(755,root,root) %{_bindir}/ngramtransfer
+%attr(755,root,root) %{_libdir}/libngram.so.*.*.*
+%attr(755,root,root) %ghost %{_libdir}/libngram.so.133
+%attr(755,root,root) %{_libdir}/libngramhist.so.*.*.*
+%attr(755,root,root) %ghost %{_libdir}/libngramhist.so.133
+# dlopened module
+%attr(755,root,root) %{_libdir}/hist-arc.so
+
+%files devel
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_libdir}/libngram.so
+%attr(755,root,root) %{_libdir}/libngramhist.so
+%{_libdir}/libngram.la
+%{_libdir}/libngramhist.la
+%{_includedir}/ngram
+
+%if %{with static_libs}
+%files static
+%defattr(644,root,root,755)
+%{_libdir}/libngram.a
+%{_libdir}/libngramhist.a
+%endif
diff --git a/opengrm-ngram-link.patch b/opengrm-ngram-link.patch
new file mode 100644
index 0000000..05222d7
--- /dev/null
+++ b/opengrm-ngram-link.patch
@@ -0,0 +1,9 @@
+--- opengrm-ngram-1.3.3/src/lib/Makefile.am.orig	2017-10-20 20:25:01.000000000 +0200
++++ opengrm-ngram-1.3.3/src/lib/Makefile.am	2018-03-10 10:53:56.224157010 +0100
+@@ -20,4 +20,5 @@
+ libngramhist_la_LIBADD =  $(DL_LIBS)
+ 
+ hist_arc_la_SOURCES = hist-arc.cc
+-hist_arc_la_LDFLAGS = -module
++hist_arc_la_LDFLAGS = -module -avoid-version
++hist_arc_la_LIBADD = -lfst -lfstscript -lm
================================================================

---- gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/opengrm-ngram.git/commitdiff/2c8e85eb480c9ae4f66c8fa5729532f1fcffc690



More information about the pld-cvs-commit mailing list