-
Notifications
You must be signed in to change notification settings - Fork 5
/
bozorth.spec
63 lines (44 loc) · 1.38 KB
/
bozorth.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
52
53
54
55
56
57
58
59
60
61
Name: bozorth
Version: 0.1
Release: 3%{?dist}
Summary: C library and Java wrapper around bozorth3 fingerprint matcher
License: Booz Allen Hamilton
Source0: %{name}-%{version}.tar.gz
BuildRequires: cmake NBIS
Requires: java
%description
%prep
%setup -q
%build
cmake . -DCMAKE_INSTALL_PREFIX=$RPM_BUILD_ROOT
make
javac -d . *.java
jar cvf bozorth.jar com
%install
rm -rf $RPM_BUILD_ROOT
make install
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%{_datadir}/*
%{_libdir}/*
%doc
%post
/sbin/ldconfig
%postun
/sbin/ldconfig
%changelog
* Thu Mar 28 2013 Aaron Donovan <[email protected]> 0.1-3
- Removing executable that was added briefly for testing ([email protected])
- Changed the way I interact with the bozorth3 library Rather than use text-
based x, y, theta, quality data, I pass in a struct xyt_struct sized block of
data. This has the advantage of making templates all the same size, reduces
load time, and makes memory interactions between Java and C easier
* Mon Mar 25 2013 Aaron Donovan <[email protected]> 0.1-2
- Putting Java classes in the com.bah.biometrics package ([email protected])
- Merge branch 'master' of github.com:amdonov/bozorth ([email protected])
- Initial commit ([email protected])
* Sun Mar 24 2013 Aaron Donovan <[email protected]> 0.1-1
- new package built with tito