summaryrefslogtreecommitdiffstats
path: root/termbox.spec
blob: 55d9f6305b38b4928b470e20661822e3b1efb32a (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# spec file for termbox
#
# Copyright (c) 2014 Remi Collet
# License: CC-BY-SA
# http://creativecommons.org/licenses/by-sa/3.0/
#
# Please, preserve the changelog entries
#
%global gh_commit    7cdd648ab890764fda6a3ce5da08f60e4392aa8e
%global gh_short     %(c=%{gh_commit}; echo ${c:0:7})
%global gh_date      20140912
%global gh_owner     nsf
%global gh_project   termbox

Name:          termbox
Version:       1.1.0
Release:       0.1.%{gh_date}git%{gh_short}%{?dist}
Summary:       Minimalist library for text-based user interfaces
Group:         System Environment/Libraries

License:       MIT
URL:           https://github.com/%{gh_owner}/%{gh_project}
Source0:       https://github.com/%{gh_owner}/%{gh_project}/archive/%{gh_commit}/%{gh_project}-%{version}%{?gh_date:-%{gh_short}}.tar.gz

BuildRoot:     %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: waf


%description
Termbox is a library that provides minimalist API which allows the
programmer to write text-based user interfaces.


%package devel
Summary:    Header files and development libraries for %{name}
Group:      Development/Libraries
Requires:   %{name}%{?_isa} = %{version}-%{release}

%description devel
This package contains the header files and development libraries
for %{name}. If you like to develop programs using %{name},
you will need to install %{name}-devel.


%prep
%setup -q -n %{gh_project}-%{gh_commit}

rm waf


%build
export CFLAGS="%{optflags}"

%{_bindir}/waf configure \
    --prefix=%{_prefix} \
    --libdir=%{_libdir}

%{_bindir}/waf build %{?_smp_mflags}


%install
%{_bindir}/waf install \
    --targets=termbox_shared \
    --destdir=%{buildroot}


%post -p /sbin/ldconfig

%postun -p /sbin/ldconfig


%files
%defattr(-,root,root,-)
%{!?_licensedir:%global license %%doc}
%license COPYING
%{_libdir}/lib%{name}.so.*

%files devel
%defattr(-,root,root,-)
%doc README
%{_includedir}/%{name}.h
%{_libdir}/lib%{name}.so


%changelog
* Fri Sep 12 2014 Remi Collet <remi@fedoraproject.org> - 1.1.0-0.1.20140912git7cdd648
- initial package