1
0
forked from pool/libfreefare
libfreefare/libfreefare.spec

122 lines
3.5 KiB
RPMSpec

#
# spec file for package libfreefare
#
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: libfreefare
%define lname libfreefare0
Summary: API for Mifare card manipulations
License: LGPL-3.0+
Group: Development/Libraries/C and C++
# Commit 089b6006b1bdd7546f9c7b291a8b3325cbda5537
Version: 0.3.4+git67
Release: 0
Url: http://code.google.com/p/nfc-tools/
#Git-Clone: http://code.google.com/p/libfreefare/
Source: %name-%version.tar.xz
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: autoconf
BuildRequires: automake
BuildRequires: libtool
BuildRequires: pkgconfig
BuildRequires: xz
%if 0%{?suse_version} >= 1140 || 0%{?fedora_version}
BuildRequires: pkgconfig(libcrypto)
BuildRequires: pkgconfig(libnfc) >= 1.7.0
%else
BuildRequires: libnfc-devel >= 1.7.0
BuildRequires: libopenssl-devel
%endif
%description
The libfreefare project aims to provide a convenient API for Mifare
card manipulations. Supported tags include: Classic 1k/4k, DESFire
2K/4K/8K, Ultralight/C. Supported features include: Mifare
Application Directory (MAD) v1-v3.
%package -n %lname
Summary: Library for Mifare card manipulations
Group: System/Libraries
%description -n %lname
The libfreefare project aims to provide a convenient API for Mifare
card manipulations. Supported tags include: Classic 1k/4k, DESFire
2K/4K/8K, Ultralight/C. Supported features include: Mifare
Application Directory (MAD) v1-v3.
%package devel
Summary: Development files for the Mifare card manipulation library
Group: Development/Libraries/C and C++
Requires: %lname = %version
%description devel
The libfreefare project aims to provide a convenient API for Mifare
card manipulations. Supported tags include: Classic 1k/4k, DESFire
2K/4K/8K, Ultralight/C. Supported features include: Mifare
Application Directory (MAD) v1-v3.
This package contains the libfreefare development files.
%package tools
Summary: Tools for Mifare cards
Group: Hardware/Other
%description tools
The libfreefare project aims to provide a convenient API for Mifare
card manipulations. Supported tags include: Classic 1k/4k, DESFire
2K/4K/8K, Ultralight/C. Supported features include: Mifare
Application Directory (MAD) v1-v3.
This package contains example programs using libfreefare for
inspecting and manipulating Mifare cards.
%prep
%setup -qn %name
%build
if [ ! -e configure ]; then
autoreconf -fi
fi
%configure --disable-static
make %{?_smp_mflags};
%install
b="%buildroot";
make install DESTDIR="$b";
rm -f "$b/%_libdir"/*.la;
%post -n %lname -p /sbin/ldconfig
%postun -n %lname -p /sbin/ldconfig
%files -n %lname
%defattr(-,root,root)
%_libdir/libfreefare.so.0*
%files devel
%defattr(-,root,root)
%_includedir/freefare.h
%_mandir/man3/*.3*
%_libdir/libfreefare.so
%_libdir/pkgconfig/libfreefare.pc
%files tools
%defattr(-,root,root)
%_bindir/mifare-*
%changelog