blob: 0b37cb72b7ac9b58dffcca112d666c18f468841e (
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
# Maintainer: Thomas Weißschuh <thomas t-8ch de>
pkgname=nbdkit
pkgver=1.40.4
pkgrel=1
pkgdesc="NBD server toolkit"
arch=('x86_64')
url="https://gitlab.com/nbdkit/nbdkit/"
license=('custom: BSD')
depends=()
optdepends=(
'lua'
'tcl'
'perl'
'rust'
'go'
'python'
'ocaml'
'libnbd'
'libvirt'
'curl'
'libguestfs'
'libssh'
'libtorrent-rasterbar: for libtorrent support'
'boost: for libtorrent support'
'libselinux'
)
checkdepends=('qemu')
validpgpkeys=('F7774FB1AD074A7E8C8767EA91738F73E1B768A0' '71C2CC22B1C4602927D2F3AAA7A16B4A2527436A')
_dldir="${pkgver%.*}"
source=(
"http://download.libguestfs.org/nbdkit/${_dldir}-stable/nbdkit-${pkgver}.tar.gz"
"http://download.libguestfs.org/nbdkit/${_dldir}-stable/nbdkit-${pkgver}.tar.gz.sig"
broken-file.patch
)
prepare() {
cd "${srcdir}/${pkgname}-${pkgver}"
# https://github.com/file/file/pull/137
patch -p1 < "${srcdir}/broken-file.patch"
}
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
autoreconf -i
# libtorrent requires boost as a build dependency
if ! pacman -Qi boost >/dev/null 2>&1; then
LIBTORRENT_ARGS=--disable-torrent
fi
./configure --prefix=/usr --sbindir=/usr/bin $LIBTORRENT_ARGS
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
install -m644 -D LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
make DESTDIR="$pkgdir" install
}
check() {
cd "${srcdir}/${pkgname}-${pkgver}"
make check
}
sha256sums=('846a1cdf817b780bc78dd407c5caae349869c292f908b7efd830592959a9729c'
'SKIP'
'7150a8b5849ef48c7e60a93cd461ee658df02a4184c182df305b2cd16371473e')
|