File go-gosqlite.spec of Package go-gosqlite
#
# spec file for package go-gosqlite
#
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2012 Sascha Peilicke <saschpe@gmx.de>
#
# 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/
#
Name: go-gosqlite
Version: 0.0.0+hg20120304
Release: 0
Summary: Trivial SQLite binding for Go
License: BSD-3-Clause
Group: Development/Languages/Other
Url: http://code.google.com/p/gosqlite/
Source0: gosqlite-%{version}.tar.bz2
Source1: LICENSE
Source2: Makefile
Patch0: weekly-fix.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: go-devel
ExclusiveArch: %ix86 x86_64 %arm
%if 0%{?fedora_version} || 0%{?rhel_version} || 0%{?centos_version}
BuildRequires: sqlite-devel
Requires: sqlite
%else
BuildRequires: sqlite3-devel
Requires: sqlite3
%endif
%if 0%{?suse_version} >= 1100
Recommends: go-gosqlite-doc
%endif
%{go_provides}
%{go_requires}
%description
SQLite binding for the Go progamming language.
%package doc
Summary: API documenation
Group: Documentation/Other
Requires: %{name} = %{version}
%description doc
API, examples and documentation.
%prep
%setup -q -n gosqlite
%patch0 -p1
cp %{SOURCE1} .
cp %{SOURCE2} ./sqlite
%build
%goprep code.google.com/p/gosqlite
%gofix code.google.com/p/gosqlite
%gobuild sqlite
%install
%{go_disable_brp_strip_static_archive}
%goinstall
%godoc
%files
%defattr(-,root,root,-)
%doc LICENSE
%{go_contribdir}/*
%files doc
%defattr(-,root,root,-)
%{go_contribsrcdir}/*
%changelog