📄 spec.template
字号:
%define name sqlite%define version SQLITE_VERSION%define release 1Name: %{name}Summary: SQLite is a C library that implements an embeddable SQL database engineVersion: %{version}Release: %{release}Source: %{name}-%{version}.tar.gzGroup: System/LibrariesURL: http://www.hwaci.com/sw/sqlite/License: Public DomainBuildRoot: %{_tmppath}/%{name}-%{version}-root%descriptionSQLite is a C library that implements an embeddable SQL database engine.Programs that link with the SQLite library can have SQL database accesswithout running a separate RDBMS process. The distribution comes with astandalone command-line access program (sqlite) that can be used toadminister an SQLite database and which serves as an example of how touse the SQLite library.%package -n %{name}-develSummary: Header files and libraries for developing apps which will use sqliteGroup: Development/CRequires: %{name} = %{version}-%{release}%description -n %{name}-develThe sqlite-devel package contains the header files and libraries neededto develop programs that use the sqlite database library.%prep%setup -q -n %{name}%buildCFLAGS="%optflags -DNDEBUG=1" CXXFLAGS="%optflags -DNDEBUG=1" ./configure --prefix=%{_prefix}makemake doc%installinstall -d $RPM_BUILD_ROOT/%{_prefix}install -d $RPM_BUILD_ROOT/%{_prefix}/bininstall -d $RPM_BUILD_ROOT/%{_prefix}/includeinstall -d $RPM_BUILD_ROOT/%{_prefix}/libmake install prefix=$RPM_BUILD_ROOT/%{_prefix}%cleanrm -fr $RPM_BUILD_ROOT%files%defattr(-, root, root)%{_libdir}/*.so*%{_bindir}/*%files -n %{name}-devel%defattr(-, root, root)%{_libdir}/pkgconfig/sqlite3.pc%{_libdir}/*.a%{_libdir}/*.la%{_includedir}/*%doc doc/*
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -