summaryrefslogtreecommitdiffstats
path: root/jq.spec
blob: 71b3e792c45f4e733fb04b8d0c9dfa355c8b2a64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
Summary: Command-line JSON processor
Name: jq
Version: %{version}
Release: %{release}
Source0: jq-%{version}.tgz
URL: https://github.com/stedolan/jq
 
License: Copyright (C) 2012 Stephen Dolan
Group: Applications/System
# Requires:

# Disables debug packages and stripping of binaries:
%global _enable_debug_package 0
%global debug_package %{nil}
%global __os_install_post %{nil}
 
%description
jq is a command-line JSON processor
 
%prep

%setup

%build
 
%install
echo "Building in: \"%{buildroot}\""
rm -rf %{buildroot}
install -d -m 755 %{buildroot}/usr/bin
mv %{_builddir}/jq-%{version}/bin/jq %{buildroot}/usr/bin

%clean

%files
%defattr(-,root,root)
/usr/bin/jq
 
%changelog

%pre

%post