forked from pool/libmaa
Matej Cepl
5176375c25
- Update to libmaa-1.4.4: * Fix compilation failure using gcc-8 - Simplify build process using capabilities of mk-configure - Remove patches already applied in upstream - Fix License in rpm spec - Remove unnecessary dependencies from rpm spec OBS-URL: https://build.opensuse.org/request/show/697365 OBS-URL: https://build.opensuse.org/package/show/Education/libmaa?expand=0&rev=8
99 lines
2.7 KiB
RPMSpec
99 lines
2.7 KiB
RPMSpec
#
|
|
# spec file for package libmaa
|
|
#
|
|
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%define soname 4
|
|
|
|
Name: libmaa
|
|
Version: 1.4.4
|
|
Release: 0
|
|
Summary: Library providing many low-level data structures
|
|
License: MIT
|
|
Group: Development/Libraries/C and C++
|
|
Url: http://www.dict.org
|
|
Source0: https://downloads.sourceforge.net/dict/%{name}-%{version}.tar.gz
|
|
BuildRequires: mk-configure
|
|
BuildRequires: zlib-devel
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%description
|
|
The libmaa library provides many low-level data structures which can
|
|
be used for writing compilers, hash tables, sets, lists,
|
|
debugging support, and memory management. libmaa was originally
|
|
implemented as a foundation for the "kheperalong" package.
|
|
|
|
%package -n %{name}%{soname}
|
|
Summary: Library providing many low-level data structures
|
|
Group: System/Libraries
|
|
|
|
%description -n %{name}%{soname}
|
|
The libmaa library provides many low-level data structures which can
|
|
be used for writing compilers, hash tables, sets, lists,
|
|
debugging support, and memory management. libmaa was originally
|
|
implemented as a foundation for the "kheperalong" package.
|
|
|
|
%package -n %{name}-devel
|
|
Summary: Development files for libmaa
|
|
Group: Development/Libraries/C and C++
|
|
Requires: libmaa%{soname} = %{version}
|
|
|
|
%description -n %{name}-devel
|
|
This RPM contains the development files for libmaa.
|
|
|
|
%package doc
|
|
Summary: Documentation files for libmaa
|
|
Group: Documentation/Other
|
|
BuildArch: noarch
|
|
|
|
%description doc
|
|
This RPM contains the documentation files for libmaa.
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%define env \
|
|
unset MAKEFLAGS \
|
|
export MKSTATICLIB=no \
|
|
export NOSUBDIR=doc
|
|
|
|
%build
|
|
%{env}
|
|
%{mkcmake}
|
|
|
|
%install
|
|
%{env}
|
|
%{mkcmake} install DESTDIR=%{?buildroot}
|
|
|
|
%post -n %{name}%{soname} -p /sbin/ldconfig
|
|
|
|
%postun -n %{name}%{soname} -p /sbin/ldconfig
|
|
|
|
%files -n %{name}%{soname}
|
|
%license doc/LICENSE
|
|
%doc README doc/NEWS
|
|
%{_libdir}/*.so.*
|
|
|
|
%files -n %{name}-devel
|
|
%{_includedir}/maa*
|
|
%{_libdir}/*.so
|
|
|
|
%files doc
|
|
%license doc/LICENSE
|
|
%doc doc/*.ps*
|
|
|
|
%changelog
|