2018-07-06 09:02:17 +00:00
|
|
|
#
|
2018-07-14 18:20:30 +00:00
|
|
|
# spec file for package guile-sqlite3
|
2018-07-06 09:02:17 +00:00
|
|
|
#
|
2020-01-14 09:54:55 +00:00
|
|
|
# Copyright (c) 2020 SUSE LLC
|
2018-07-06 09:02:17 +00:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
2019-07-22 11:35:27 +00:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2018-07-06 09:02:17 +00:00
|
|
|
#
|
|
|
|
|
2018-07-27 10:11:07 +00:00
|
|
|
|
2018-07-06 09:02:17 +00:00
|
|
|
Name: guile-sqlite3
|
2020-11-06 17:45:49 +00:00
|
|
|
Version: 0.1.3
|
2018-07-06 09:02:17 +00:00
|
|
|
Release: 0
|
2018-07-14 18:20:30 +00:00
|
|
|
Summary: SQLite3 database access from Guile
|
2018-07-27 10:11:07 +00:00
|
|
|
License: GPL-3.0-or-later AND LGPL-3.0-or-later
|
2018-07-06 09:02:17 +00:00
|
|
|
Group: Development/Libraries/Other
|
2020-01-14 09:54:55 +00:00
|
|
|
URL: https://notabug.org/guile-sqlite3/guile-sqlite3
|
2019-01-30 10:41:49 +00:00
|
|
|
Source0: https://notabug.org/guile-sqlite3/%{name}/archive/v%{version}.tar.gz
|
2018-07-06 09:02:17 +00:00
|
|
|
BuildRequires: automake
|
2019-07-22 11:35:27 +00:00
|
|
|
BuildRequires: guile-devel >= 2.0.10
|
2018-07-06 09:02:17 +00:00
|
|
|
BuildRequires: pkg-config
|
|
|
|
BuildRequires: pkgconfig(sqlite3)
|
2019-07-22 11:35:27 +00:00
|
|
|
Requires: guile >= 2.0.10
|
2018-07-12 17:52:01 +00:00
|
|
|
Requires: sqlite3-devel
|
2018-07-06 09:02:17 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
|
|
|
|
%description
|
|
|
|
This package provides Guile bindings to the SQLite3 database system.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n %{name}
|
|
|
|
|
|
|
|
%build
|
|
|
|
autoreconf -vfi
|
|
|
|
%configure \
|
|
|
|
--disable-silent-rules
|
|
|
|
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
|
|
%check
|
|
|
|
make check
|
|
|
|
|
|
|
|
%install
|
|
|
|
%make_install
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%doc AUTHORS README
|
|
|
|
%license COPYING COPYING.LESSER
|
|
|
|
%{_datadir}/guile
|
|
|
|
%{_libdir}/guile
|
|
|
|
|
|
|
|
%changelog
|