diff options
| author | Remi Collet <fedora@famillecollet.com> | 2012-10-20 08:14:42 +0200 | 
|---|---|---|
| committer | Remi Collet <fedora@famillecollet.com> | 2012-10-20 08:14:42 +0200 | 
| commit | 847ae7563c65a337c20f185c8a54bcc7eef77f95 (patch) | |
| tree | f8a0aa6c400a1605572741c44cf19ed4375b4bb2 | |
| parent | c4ee61bd349a4d2484a8421c876fe7971ef153ff (diff) | |
| -rw-r--r-- | Makefile | 4 | ||||
| -rw-r--r-- | vsqlite++.spec | 9 | 
2 files changed, 13 insertions, 0 deletions
| diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..1e65467 --- /dev/null +++ b/Makefile @@ -0,0 +1,4 @@ +SRCDIR := $(shell pwd) +NAME := $(shell basename $(SRCDIR)) +include ../common/Makefile + diff --git a/vsqlite++.spec b/vsqlite++.spec index b61e539..b10ba38 100644 --- a/vsqlite++.spec +++ b/vsqlite++.spec @@ -8,6 +8,7 @@ License:    BSD  URL:        https://github.com/vinzenz/vsqlite--  Source0:    https://github.com/downloads/vinzenz/vsqlite--/%{name}-%{version}.tar.gz +BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)  BuildRequires:  premake  BuildRequires:  boost-devel  BuildRequires:  sqlite-devel @@ -28,7 +29,9 @@ Requires:       %{name} = %{version}-%{release}  This package contains development files for %{name}.  %package doc +%if 0%{?fedora} >= 12 || 0%{?rhel} >= 6  BuildArch:      noarch +%endif  Summary:        Development documentation for %{name}  Group:          Development/Libraries @@ -60,9 +63,11 @@ make DESTDIR=%{buildroot} install  %postun -p /sbin/ldconfig  %files doc +%defattr(-,root,root,-)  %doc ChangeLog README COPYING examples/sqlite_wrapper.cpp html/*  %files devel +%defattr(-,root,root,-)  %doc ChangeLog README COPYING  %{_libdir}/libvsqlitepp.so  %{_includedir}/sqlite @@ -71,10 +76,14 @@ make DESTDIR=%{buildroot} install  %exclude %{_libdir}/libvsqlitepp.a  %files +%defattr(-,root,root,-)  %doc ChangeLog README COPYING   %{_libdir}/libvsqlitepp.so.*  %changelog +* Sat Oct 20 2012 Remi Collet <RPMS@FamilleCollet.com> - 0.3.9-3 +- backport for remi repo +  * Fri Sep 28 2012 Vinzenz Feenstra <evilissimo@gmail.com> - 0.3.9-3  - Documentation subpackage now noarch | 
