File qore-asn1-module.spec of Package qore-asn1-module
#
# spec file for package qore-asn1-module
#
# Copyright (c) 2014 SUSE LINUX Products 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 http://bugs.opensuse.org/
#
%define module_api %(qore --module-api 2>/dev/null)
%define module_dir %{_libdir}/qore-modules
Name: qore-asn1-module
Version: 0.0.3
Release: 0
Summary: ASN.1 Module for Qore
License: LGPL-2.0+ or GPL-2.0+ or MIT
Group: Development/Languages
Url: http://qore.org
Source: http://prdownloads.sourceforge.net/qore/%{name}-%{version}.tar.gz
BuildRequires: gcc-c++
BuildRequires: openssl-devel
BuildRequires: qore
BuildRequires: qore-devel
Requires: %{_bindir}/env
Requires: qore-module-api-%{module_api}
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
This module provides functionality enabling qore scripts/programs to create,
parse, and manipulate ASN.1 data.
%prep
%setup -q
%build
%if "%{_lib}" == "lib64"
c64=--enable-64bit
%endif
CFLAGS="%{optflags}" CXXFLAGS="%{optflags}" ./configure RPM_OPT_FLAGS="%{optflags}" --prefix=/usr --disable-debug $c64
make %{?_smp_mflags}
%install
mkdir -p %{buildroot}/%{module_dir}
mkdir -p %{buildroot}%{_datadir}/doc/qore-asn1-module
make DESTDIR=%{buildroot} install %{?_smp_mflags}
%files
%defattr(-,root,root,-)
%{module_dir}
%doc COPYING README RELEASE-NOTES ChangeLog AUTHORS
%package doc
Summary: ASN.1 module for Qore
Group: Development/Languages
%description doc
ASN.1 module for the Qore Programming Language.
This RPM provides API documentation, test and example programs
%files doc
%defattr(-,root,root,-)
%doc docs/asn1-module-doc.html
%changelog