%{?nodejs_find_provides_and_requires} %global packagename mime-db %global enable_tests 1 Name: nodejs-mime-db Version: 1.19.0 Release: 1%{?dist} Summary: This is a database of all mime types License: MIT URL: https://github.com/jshttp/mime-db Source0: https://github.com/jshttp/mime-db/archive/v1.19.0.tar.gz ExclusiveArch: %{nodejs_arches} noarch BuildArch: noarch BuildRequires: nodejs-packaging %if 0%{?enable_tests} BuildRequires: mocha %endif Requires: nodejs %description This is a database of all mime types. It consists of a single, public JSON file and does not include any logic, allowing it to remain as un-opinionated as possible with an API. It aggregates data from the following sources: * http://www.iana.org/assignments/media-types/media-types.xhtml * http://svn.apache.org/repos/asf/httpd/httpd/trunk/docs/conf/mime.types * http://hg.nginx.org/nginx/raw-file/default/conf/mime.types %prep %setup -q -n %{packagename}-%{version} %build # nothing to do! %install mkdir -p %{buildroot}%{nodejs_sitelib}/%{packagename} cp -pr package.json *.js db.json src/ scripts/ \ %{buildroot}%{nodejs_sitelib}/%{packagename} %nodejs_symlink_deps %if 0%{?enable_tests} %check %nodejs_symlink_deps --check /usr/bin/mocha -R spec %endif %files %doc README.md HISTORY.md %license LICENSE %{nodejs_sitelib}/%{packagename} %changelog * Wed Oct 7 2015 Jared Smith - 1.19.0-1 - Initial packaging