71 lines
1.8 KiB
RPMSpec
71 lines
1.8 KiB
RPMSpec
#
|
|
# spec file for package ecryptfs-utils (Version 5)
|
|
#
|
|
# Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
# This file and all modifications and additions to the pristine
|
|
# package are under the same license as the package itself.
|
|
#
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
# norootforbuild
|
|
|
|
Name: ecryptfs-utils
|
|
URL: http://ecryptfs.sourceforge.net/
|
|
License: GNU General Public License (GPL)
|
|
Group: Productivity/Security
|
|
Autoreqprov: on
|
|
Summary: Userspace utilities for ecryptfs
|
|
Version: 5
|
|
Release: 2
|
|
Source0: http://downloads.sourceforge.net/ecryptfs/%{name}-%{version}.tar.bz2
|
|
Patch: ecryptfs-utils-fixes.patch
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: gtk2-devel keyutils-devel keyutils-libs libgcrypt-devel openssl-devel
|
|
|
|
%description
|
|
A stacked cryptographic filesystem for Linux.
|
|
|
|
|
|
|
|
Authors:
|
|
--------
|
|
Mike Halcrow designed and implemented eCryptfs, which is a fork from
|
|
Cryptfs. Erez Zadok, along with the fileystem research lab at Stony
|
|
Brook University, designed and implemented Cryptfs. Michael
|
|
C. Thompson has contributed a substantial amount of code to the
|
|
project.
|
|
|
|
%prep
|
|
%setup -q
|
|
%patch0 -p1
|
|
|
|
%build
|
|
export CFLAGS="$RPM_OPT_FLAGS"
|
|
./configure --prefix=%{_prefix} \
|
|
--libdir=%{_libdir}
|
|
make
|
|
make check
|
|
|
|
%install
|
|
make install DESTDIR=$RPM_BUILD_ROOT
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%files
|
|
%defattr(-, root, root)
|
|
%doc COPYING NEWS README THANKS
|
|
%{_prefix}/bin/*
|
|
/sbin/*
|
|
%{_libdir}/libecryptfs*
|
|
/usr/lib/ecryptfs*
|
|
|
|
%changelog -n ecryptfs-utils
|
|
* Thu Dec 14 2006 - meissner@suse.de
|
|
- use lib64 correctly.
|
|
- fixed "is used uninitialized" warnings.
|
|
* Tue Dec 05 2006 - meissner@suse.de
|
|
- initial checkin of version 5.
|
|
- userland utilities to control ecryptfs filesystems
|