|
|
|
|
##
|
|
|
|
|
## node-sqlite3.spec -- OpenPKG RPM Package Specification
|
|
|
|
|
## Copyright (c) 2000-2020 OpenPKG Project <http://openpkg.org/>
|
|
|
|
|
##
|
|
|
|
|
## Permission to use, copy, modify, and distribute this software for
|
|
|
|
|
## any purpose with or without fee is hereby granted, provided that
|
|
|
|
|
## the above copyright notice and this permission notice appear in all
|
|
|
|
|
## copies.
|
|
|
|
|
##
|
|
|
|
|
## THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
|
|
|
|
|
## WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
|
## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
|
## IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR
|
|
|
|
|
## CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
|
## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
|
## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
|
|
|
|
|
## USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
|
|
|
## ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
|
## OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
|
|
|
|
|
## OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
|
## SUCH DAMAGE.
|
|
|
|
|
##
|
|
|
|
|
|
|
|
|
|
# package version
|
|
|
|
|
%define V_sqlite3 4.0.9
|
|
|
|
|
%define V_sqlite3_snap 20190621
|
|
|
|
|
|
|
|
|
|
# package information
|
|
|
|
|
Name: node-sqlite3
|
|
|
|
|
Summary: Node Bindings to SQLite
|
|
|
|
|
URL: https://github.com/mapbox/node-sqlite3
|
|
|
|
|
Vendor: MapBox
|
|
|
|
|
Packager: OpenPKG Project
|
|
|
|
|
Distribution: OpenPKG Community
|
|
|
|
|
Class: EVAL
|
|
|
|
|
Group: Database
|
|
|
|
|
License: MIT
|
|
|
|
|
Version: %{V_sqlite3}
|
|
|
|
|
Release: 20190621
|
|
|
|
|
|
|
|
|
|
# list of sources
|
|
|
|
|
Source0: http://download.openpkg.org/components/versioned/node-sqlite3/node-sqlite3-%{V_sqlite3}-%{V_sqlite3_snap}.tar.xz
|
|
|
|
|
Patch0: node-sqlite3.patch
|
|
|
|
|
|
|
|
|
|
# build information
|
|
|
|
|
BuildPreReq: OpenPKG, openpkg >= 20160101, npm
|
|
|
|
|
PreReq: OpenPKG, openpkg >= 20160101
|
|
|
|
|
BuildPreReq: node, sqlite
|
|
|
|
|
PreReq: node, sqlite
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
|
This is a Node.js binding for SQLite.
|
|
|
|
|
|
|
|
|
|
%track
|
|
|
|
|
prog node-sqlite3:release = {
|
|
|
|
|
version = %{V_sqlite3}
|
|
|
|
|
url = https://github.com/mapbox/node-sqlite3/releases
|
|
|
|
|
regex = v(__VER__)\.tar\.gz
|
|
|
|
|
}
|
|
|
|
|
prog node-sqlite3:snapshot = {
|
|
|
|
|
version = %{V_sqlite3_snap}
|
|
|
|
|
url = http://download.openpkg.org/components/versioned/node-sqlite3/
|
|
|
|
|
regex = node-sqlite3-[^-]+-(__VER__)\.tar\.xz
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
|
%setup -q -n node-sqlite3
|
|
|
|
|
%patch -p0
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
# build native parts
|
|
|
|
|
npx node-pre-gyp install \
|
|
|
|
|
--build-from-source --sqlite=%{l_prefix}
|
|
|
|
|
|
|
|
|
|
# prune source tree
|
|
|
|
|
rm -f [A-Z]* appveyor.yml
|
|
|
|
|
rm -rf examples test benchmark
|
|
|
|
|
find node_modules -name test -type d -print | xargs rm -rf
|
|
|
|
|
find node_modules -name example -type d -print | xargs rm -rf
|
|
|
|
|
find node_modules -name examples -type d -print | xargs rm -rf
|
|
|
|
|
find node_modules -name ChangeLog -type f -print | xargs rm -f
|
|
|
|
|
find node_modules -name CHANGELOG.md -type f -print | xargs rm -f
|
|
|
|
|
find node_modules -name README.md -type f -print | xargs rm -f
|
|
|
|
|
find node_modules -name README.markdown -type f -print | xargs rm -f
|
|
|
|
|
find node_modules -name Readme.md -type f -print | xargs rm -f
|
|
|
|
|
find node_modules -name .npmignore -type f -print | xargs rm -f
|
|
|
|
|
find node_modules -name .travis.yml -type f -print | xargs rm -f
|
|
|
|
|
find node_modules -name LICENSE -type f -print | xargs rm -f
|
|
|
|
|
find node_modules -name LICENSE.txt -type f -print | xargs rm -f
|
|
|
|
|
find node_modules -name LICENCE -type f -print | xargs rm -f
|
|
|
|
|
find node_modules -name License -type f -print | xargs rm -f
|
|
|
|
|
find node_modules -name AUTHORS -type f -print | xargs rm -f
|
|
|
|
|
find node_modules -name CONTRIBUTING.md -type f -print | xargs rm -f
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
|
# create installation hierarchy
|
|
|
|
|
%{l_shtool} mkdir -f -p -m 755 \
|
|
|
|
|
$RPM_BUILD_ROOT%{l_prefix}/lib/node/pkg/sqlite3
|
|
|
|
|
|
|
|
|
|
# install package
|
|
|
|
|
cp -rp * \
|
|
|
|
|
$RPM_BUILD_ROOT%{l_prefix}/lib/node/pkg/sqlite3/
|
|
|
|
|
|
|
|
|
|
# determine installation files
|
|
|
|
|
%{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT %{l_files_std}
|
|
|
|
|
|
|
|
|
|
%files -f files
|
|
|
|
|
|
|
|
|
|
%clean
|
|
|
|
|
|