Il giorno ven, 08/01/2016 alle 09.16 -0700, stan ha scritto:
> Perhaps you could put this into copr [1], so other people who might
> want it could find it?
> 
> 1. https://fedorahosted.org/copr/

yes, this is a good idea, but I'm not a expert of spec files and
package build.

I have adapt the spec file present into sqlchiper zip and install
manually the dependence, omitting descriptions, Comments and parts of
lesser importance to build it, I do not know how to improve it (see
attach).

In the next few days I will try to look how to use copr

Thanks

-- 
Dario Lesca
(inviato dal mio Linux Fedora 23 Workstation)
%define name sqlcipher
%define version 3.3.1
%define release 1

Name: %{name}
Summary:  SQLCipher is an SQLite extension that provides 256 bit AES encryption of database files
Version: %{version}
Release: %{release}
Source: %{name}-%{version}.tar.gz
Group: System/Libraries
URL:  http://sqlcipher.net
License: Public Domain
BuildRoot: %{_tmppath}/%{name}-%{version}-root

%description
SQLite is a software library that implements a self-contained, serverless,
zero-configuration, transactional SQL database engine.
Programs that link with the SQLite library can have SQL database access
without running a separate RDBMS process. The distribution comes with a
standalone command-line access program (sqlite) that can be used to
administer an SQLite database and which serves as an example of how to
use the SQLite library.

%package -n %{name}-devel
Summary: Header files and libraries for developing apps which will use sqlite
Group: Development/C
Requires: %{name} = %{version}-%{release}

%description -n %{name}-devel
The sqlite-devel package contains the header files and libraries needed
to develop programs that use the SQLite database library.

%prep
%setup -q -n %{name}-%{version}

%build
CFLAGS="%optflags -DNDEBUG=1" CXXFLAGS="%optflags -DNDEBUG=1" ./configure --enable-tempstore=yes CFLAGS="-DSQLITE_HAS_CODEC" --prefix=%{_prefix}

make
make doc

%install
install -d $RPM_BUILD_ROOT/%{_prefix}
install -d $RPM_BUILD_ROOT/%{_prefix}/bin
install -d $RPM_BUILD_ROOT/%{_prefix}/include
install -d $RPM_BUILD_ROOT/%{_prefix}/lib
make install prefix=$RPM_BUILD_ROOT/%{_prefix}

%post -p /sbin/ldconfig

%postun -p /sbin/ldconfig

%clean
rm -fr $RPM_BUILD_ROOT

%files
%defattr(-, root, root)
/usr/lib/*.so*
%{_bindir}/*

%files -n %{name}-devel
%defattr(-, root, root)
/usr/lib/pkgconfig/sqlcipher.pc
/usr/lib/*.a
/usr/lib/*.la
%{_includedir}/*
#%doc doc/*
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org

Reply via email to