source: projects/specs/trunk/lib/liba/libaesgm/libaesgm-vl.spec @ 9308

Revision 9308, 2.1 KB checked in by inagaki, 9 years ago (diff)

2015-01-29 Ryoichi INAGAKI <ryo1@…>

  • eb: fixed files encoding
  • gerbv, irrlicht: updated
  • kaffeine: added patch
  • mana, manadic: rebuilt
  • ndtpd: fixed spec


Line 
1Name:           libaesgm
2Version:        20090429
3Release:        2%{?_dist_release}
4Summary:        Library implementation of AES (Rijndael) cryptographic methods
5
6License:        BSD
7Group:          System Environment/Libraries
8URL:            http://gladman.plushost.co.uk/oldsite/AES/index.php
9
10Source0:        http://gladman.plushost.co.uk/oldsite/AES/aes-src-29-04-09.zip
11Source1:        Makefile.aes
12# Add fileencryption support
13# http://www.gladman.me.uk/cryptography_technology/fileencrypt/
14Patch0:         libaesgm-20090429-fileencrypt.patch
15
16BuildRoot:      %{_tmppath}/%{name}-%{version}-root
17BuildRequires:  unzip
18
19%description
20Library implementation of AES (Rijndael) cryptographic methods.
21
22%package devel
23Summary:        Development files for libaesgm
24Group:          Development/Libraries
25Requires:       %{name} = %{version}-%{release}
26
27%description devel
28Development headers and libraries for libaesgm.
29
30%prep
31%setup -q -c -n %{name}-%{version}
32cp %{SOURCE1} Makefile
33%patch0 -p1 -b .fileencrypt
34sed -i 's/\r//' *.txt
35
36%build
37%{__make} CFLAGS="%{optflags} -fPIC -DUSE_SHA1"
38
39%install
40%{__make} DESTDIR=$RPM_BUILD_ROOT LIBDIR=%{_libdir} install
41
42%clean
43rm -rf $RPM_BUILD_ROOT
44
45%post -p /sbin/ldconfig
46
47%postun -p /sbin/ldconfig
48
49%files
50%defattr(-,root,root,-)
51%doc *.txt
52%{_libdir}/libaesgm.so.*
53
54%files devel
55%defattr(-,root,root,-)
56%{_includedir}/aes/
57%{_libdir}/libaesgm.so
58
59%changelog
60* Thu Jan 29 2015 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 20090429-2
61- rebuilt on current VineSeed
62
63* Wed Mar 16 2011 Kazutaka HARADA <kazutaka@vinelinux.org> 20090429-1
64- initial build for Vine Linux based of fedora development
65
66* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20090429-4
67- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
68
69* Mon May 24 2010 Tom "spot" Callaway <tcallawa@redhat.com> 20090429-3
70- add fileencrypt support
71
72* Mon Feb 22 2010 Tom "spot" Callaway <tcallawa@redhat.com> 20090429-2
73- use sane versioning to ensure proper upgrade ordering without epoch
74- fix Makefile.aes to not use double-zero in soname, don't make double zero symlink
75- add default clean section
76- put headers in /aes/ namespace dir
77
78* Thu Feb 18 2010 Tom "spot" Callaway <tcallawa@redhat.com> 290409-1
79- initial Fedora package
Note: See TracBrowser for help on using the repository browser.