forked from pool/bcache-tools
Jan Engelhardt
fc50823f3c
OBS-URL: https://build.opensuse.org/package/show/filesystems/bcache-tools?expand=0&rev=9
70 lines
2.1 KiB
RPMSpec
70 lines
2.1 KiB
RPMSpec
#
|
|
# spec file for package bcache-tools
|
|
#
|
|
# Copyright (c) 2014 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: bcache-tools
|
|
Summary: Configuration utilities for bcache
|
|
License: GPL-2.0
|
|
Group: System/Base
|
|
Version: 0.9
|
|
Release: 0
|
|
#Git-Snapshot: v0.9
|
|
Url: http://bcache.evilpiepirate.org/
|
|
|
|
#Git-Clone: http://evilpiepirate.org/git/bcache-tools.git
|
|
Source: %name-%version.tar.xz
|
|
Patch1: 0001-build-remove-inline-keyword-from-crc64.patch
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: libblkid-devel
|
|
BuildRequires: libuuid-devel
|
|
BuildRequires: openssl-devel
|
|
BuildRequires: pkg-config
|
|
BuildRequires: xz
|
|
|
|
%description
|
|
This package contains utilities for configuring the bcache Module.
|
|
|
|
%prep
|
|
%setup -qn %name
|
|
%patch -P 1 -p1
|
|
|
|
%build
|
|
export SUSE_ASNEEDED=0
|
|
make all CFLAGS="%optflags $(pkg-config blkid uuid --cflags) -std=gnu99" \
|
|
LDFLAGS="$(pkg-config blkid uuid --libs)" %{?_smp_mflags}
|
|
|
|
%install
|
|
b="%buildroot"
|
|
# Without these existing, make install would fail
|
|
mkdir -p "$b"/{sbin,%_sbindir,%_mandir/man8,/lib/udev/rules.d}
|
|
mkdir -p "$b/%_sysconfdir/initramfs-tools/scripts/init-premount"
|
|
mkdir -p "$b/%_sysconfdir/initramfs-tools/hooks"
|
|
make install DESTDIR="$b"
|
|
rm -Rf "$b/%_sysconfdir/initramfs-tools"
|
|
mkdir -p "$b/%_prefix/lib"
|
|
mv "$b/lib/udev" "$b/%_prefix/lib/"
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%_sbindir/bcache-super-show
|
|
%_sbindir/make-bcache
|
|
%_prefix/lib/udev
|
|
%_mandir/man8/*.8*
|
|
%doc COPYING
|
|
|
|
%changelog
|