gnu: qemu: Remove dependency on Samba.
[jackhill/guix/guix.git] / gnu / packages / lvm.scm
CommitLineData
88226a50
AE
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
3;;;
4;;; This file is part of GNU Guix.
5;;;
6;;; GNU Guix is free software; you can redistribute it and/or modify it
7;;; under the terms of the GNU General Public License as published by
8;;; the Free Software Foundation; either version 3 of the License, or (at
9;;; your option) any later version.
10;;;
11;;; GNU Guix is distributed in the hope that it will be useful, but
12;;; WITHOUT ANY WARRANTY; without even the implied warranty of
13;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14;;; GNU General Public License for more details.
15;;;
16;;; You should have received a copy of the GNU General Public License
17;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
18
19(define-module (gnu packages lvm)
20 #:use-module ((guix licenses)
21 #:renamer (symbol-prefix-proc 'license:))
22 #:use-module (guix packages)
23 #:use-module (guix download)
24 #:use-module (guix build-system gnu)
25 #:use-module (gnu packages)
26 #:use-module (gnu packages linux)
27 #:use-module (gnu packages pkg-config))
28
29(define-public lvm2
30 (package
31 (name "lvm2")
32 (version "2.02.98")
33 (source (origin
34 (method url-fetch)
35 (uri (string-append "ftp://sources.redhat.com/pub/lvm2/LVM2."
36 version ".tgz"))
37 (sha256
38 (base32
39 "0r6q6z8ip6q5qgkzng0saljassp4912k6i21ra10vq7pzrc0l0vi"))))
40 (build-system gnu-build-system)
c4c4cc05 41 (native-inputs
88226a50
AE
42 `(("pkg-config" ,pkg-config)
43 ("procps" ,procps)))
44 (arguments
45 `(#:tests? #f ; require to be root
46 #:configure-flags
47 `(,(string-append "--with-confdir=" (assoc-ref %outputs "out") "/etc"))
48 #:phases
d4bf49b1
EB
49 (alist-cons-before
50 'configure 'patch-make-tmpl
51 (lambda _
52 (substitute* "make.tmpl.in"
53 (("/bin/sh") (which "sh"))
54 (("CC \\?=") "CC ="))) ; force CC argument to be set from configure
88226a50
AE
55 %standard-phases)))
56 (synopsis "logical volume management")
57 (description
58 "LVM2 refers to the userspace toolset that provides logical volume
59management facilities on linux. It is reasonably backwards-compatible with
60the original LVM toolset.")
61 (license license:gpl2)
62 (home-page "http://www.sourceware.org/lvm2/")))