From 6d8f35523708f0e455d470d47af102997c5caeb6 Mon Sep 17 00:00:00 2001 From: Ondrej Dubaj Date: Jul 21 2020 12:12:34 +0000 Subject: Use make macros https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro --- diff --git a/sqlite.spec b/sqlite.spec index 0d91cf7..e2fb360 100644 --- a/sqlite.spec +++ b/sqlite.spec @@ -12,7 +12,7 @@ Summary: Library that implements an embeddable SQL database engine Name: sqlite Version: %{rpmver} -Release: 1%{?dist} +Release: 2%{?dist} License: Public Domain URL: http://www.sqlite.org/ @@ -162,21 +162,21 @@ export CFLAGS="$RPM_OPT_FLAGS $RPM_LD_FLAGS -DSQLITE_ENABLE_COLUMN_METADATA=1 \ sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool -make %{?_smp_mflags} +%make_build %{?_smp_mflags} # Build sqlite3_analyzer # depends on tcl %if %{with tcl} -make %{?_smp_mflags} sqlite3_analyzer +%make_build %{?_smp_mflags} sqlite3_analyzer %endif # Build sqldiff %if %{with tcl} -make %{?_smp_mflags} sqldiff +%make_build %{?_smp_mflags} sqldiff %endif %install -make DESTDIR=${RPM_BUILD_ROOT} install +%make_install install -D -m0644 sqlite3.1 $RPM_BUILD_ROOT/%{_mandir}/man1/sqlite3.1 install -D -m0755 lemon $RPM_BUILD_ROOT/%{_bindir}/lemon @@ -257,6 +257,10 @@ make test %endif %changelog +* Tue Jul 14 2020 Tom Stellard - 3.32.3-2 +- Use make macros +- https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro + * Fri Jun 19 2020 Ondrej Dubaj - 3.32.3-1 - Updated to version 3.32.3 (https://sqlite.org/releaselog/3_32_3.html)