blob: 8b9fcf8cd6b9cac820e8fbc0533b9107ba74e35a (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
pkgname=dnf-plugins-extras
pkgver=4.0.16
pkgrel=1
pkgdesc="Extras DNF Plugins"
arch=('any')
url="https://github.com/rpm-software-management/$pkgname"
license=('GPL2')
depends=('dnf>=4.4.3' 'python')
makedepends=('cmake>=3.13' 'python-sphinx')
checkdepends=('python-pytest' 'python-pykickstart' 'python-systemd')
optdepends=('dbus-python: for snapper plugin'
'python-pycurl: for torproxy plugin'
'python-pykickstart: for kickstart plugin'
'python-systemd: for system-upgrade plugin'
'snapper: for snapper plugin'
'tracer: for tracer plugin')
backup=('etc/dnf/plugins/rpmconf.conf'
'etc/dnf/plugins/torproxy.conf')
source=("$url/archive/$pkgver/$pkgname-$pkgver.tar.gz")
sha256sums=('5715a6c8418fee1ac4f175b0c4ae0051fbce59641e201f9df97dfdccf11a9ea0')
prepare() {
cd "$pkgname-$pkgver"
# sphinx-build-3 does not exist on Arch Linux,
# use sphinx-build instead
sed -e 's/sphinx-build-3/sphinx-build/' \
-i doc/CMakeLists.txt
}
build() {
cd "$pkgname-$pkgver"
cmake -B build \
-DCMAKE_INSTALL_PREFIX=/usr
make -C build
make -C build doc-man
}
# Tests seem to need a minimal RPM database on the system
#check() {
# cd "$pkgname-$pkgver"
#
# pytest
#}
package() {
cd "$pkgname-$pkgver"
make -C build DESTDIR="$pkgdir/" install
install -Dp -m644 README.rst "$pkgdir/usr/share/doc/$pkgname/README.rst"
}
# vim: set ft=sh ts=4 sw=4 noet:
|