🔒 Repository is read-only – file editing is disabled.

recipes/core/lvm2/PAGBUILD.yaml main

40 linii Raw ← Powrót
12345678910111213141516171819202122232425262728293031323334353637383940
pkgname: lvm2
pkgver: '2.03.42'
pkgrel: '1'
pkgdesc: Allows spanning of file systems across multiple physical disks and partitions.
url: 'https://sourceware.org/lvm2/'
arch: x86_64
license:
- 'GPL2 LGPL2.1 BSD:2-Clause'
depends: []
makedepends:
- systemd
- libaio
- util-linux
source:
- 'https://sourceware.org/ftp/lvm2/LVM2.${pkgver}.tgz'
sha256sums:
- 352703ef5b72ebb22d4f250284a29b89fe64d4049c6bf64c693f9af486c8081e
build: |
  cd LVM2.${pkgver}
  ./configure        \
  --prefix=/usr      \
  --sbindir=/usr/bin \
  --libdir=/usr/lib  \
  --with-udev-prefix=/usr \
  --with-libexecdir=/usr/lib/lvm2 \
  --exec-prefix=     \
  --with-confdir=/etc \
  --with-modulesdir=/usr/lib/modules \
  --mandir=/usr/share/man \
  --enable-cmdlib \
  --enable-pkgconfig \
  --with-systemdsystemunitdir=/usr/lib/systemd/system \
  --enable-udev_sync
  make
  make DESTDIR=${PKGDIR} install

  install -Dm644 COPYING ${PKGDIR}/usr/share/licenses/${pkgname}/COPYING
  install -Dm644 COPYING.BSD ${PKGDIR}/usr/share/licenses/${pkgname}/COPYING.BSD
package: |
  true