-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathopenebts.spec
52 lines (34 loc) · 889 Bytes
/
openebts.spec
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
Name: OpenEBTS
Version: 2.0.2
Release: 1%{?dist}
Summary: The OpenEBTS library simplifies the programmtic reading, writing, and editing of EBTS files.
License: Apache 2.0
URL: https://github.com/amdonov/OpenEBTS
Source0: %{name}-%{version}.tar.gz
BuildRequires: NBIS freeimage-devel libcurl-devel
Requires: freeimage NBIS libcurl
%description
%prep
%setup -q
%build
cmake . -DCMAKE_INSTALL_PREFIX=$RPM_BUILD_ROOT
make
%install
rm -rf $RPM_BUILD_ROOT
make install
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%{_includedir}/*
%{_libdir}/*
%doc
%post
/sbin/ldconfig
%postun
/sbin/ldconfig
%changelog
* Mon Mar 25 2013 Aaron Donovan <amdonov@gmail.com> 2.0.2-1
- Corrected oversimplification of pointer usage (amdonov@gmail.com)
* Tue Mar 19 2013 Aaron Donovan <amdonov@gmail.com> 2.0.1-1
- new package built with tito