blob: 45405c7e668bdac6e7325a81a03115e8373983b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Maintainer: Baptiste Jonglez <baptiste--aur at jonglez dot org>
# Based on the lvm2 package in [core]
pkgname="python-lvm"
pkgver=2.02.170
pkgrel=1
arch=('i686' 'x86_64')
url="http://sourceware.org/lvm2/"
license=('LGPL2.1')
pkgdesc="Python 3 bindings for LVM"
depends=('python' 'lvm2')
source=(https://mirrors.kernel.org/sourceware/lvm2/releases/LVM2.${pkgver}.tgz{,.asc})
sha256sums=('9372d2523027a751cf54eafdf8b761ff843969520c32b0c50abfba65e23d0d40'
'SKIP')
validpgpkeys=('88437EF5C077BD113D3B7224228191C1567E2C17')
build() {
CONFIGUREOPTS="--prefix=/usr --sysconfdir=/etc --localstatedir=/var --sbindir=/usr/bin \
--with-udev-prefix=/usr --with-systemdsystemunitdir=/usr/lib/systemd/system \
--with-default-pid-dir=/run --with-default-dm-run-dir=/run --with-default-run-dir=/run/lvm \
--with-default-locking-dir=/run/lock/lvm \
--enable-applib --enable-python3_bindings"
cd LVM2.${pkgver}
./configure $CONFIGUREOPTS
make python
}
package() {
cd LVM2.${pkgver}
make -C python DESTDIR="${pkgdir}" install
}
|