PKGBUILDs/extra/lxcfs/PKGBUILD

35 lines
1 KiB
Bash
Raw Normal View History

2021-12-26 22:58:52 +00:00
# Maintainer: Sergej Pupykin <arch+pub@sergej.pp.ru>
# Maintainer: Christian Brauner <christianvanbrauner@gmail.com>
# Maintainer: Morten Linderud <foxboron@archlinux.org>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - add -D_FILE_OFFSET_BITS=64 to CPPFLAGS
pkgname=lxcfs
2024-07-12 23:26:05 +00:00
pkgver=6.0.1
2023-08-03 23:30:54 +00:00
pkgrel=1
2021-12-26 22:58:52 +00:00
pkgdesc="FUSE filesystem for LXC"
arch=(x86_64)
url="https://linuxcontainers.org/"
license=('GPL')
depends=('lxc' 'libnih' 'fuse3' 'dbus-glib')
2022-08-02 23:50:25 +00:00
makedepends=('help2man' 'meson' 'python-jinja' 'systemd')
2023-01-21 21:14:50 +00:00
options=('emptydirs')
2023-08-03 23:30:54 +00:00
source=("https://linuxcontainers.org/downloads/lxcfs/lxcfs-$pkgver.tar.gz"{,.asc})
2021-12-26 22:58:52 +00:00
validpgpkeys=('602F567663E593BCBD14F338C638974D64792D67')
2024-07-12 23:26:05 +00:00
sha256sums=('898eae241e1f7c5bfad72a04e28bdf78b6f33a2d8f6c6922d78c85b7b6b82bec'
2023-08-03 23:30:54 +00:00
'SKIP')
2022-08-03 23:41:09 +00:00
2021-12-26 22:58:52 +00:00
build() {
2022-03-13 17:03:26 +00:00
cd "$pkgname-$pkgver"
2021-12-26 22:58:52 +00:00
CPPFLAGS+=" -D_FILE_OFFSET_BITS=64"
2022-03-13 17:03:26 +00:00
arch-meson ../build
meson compile -C ../build
2021-12-26 22:58:52 +00:00
}
package() {
2022-03-13 17:03:26 +00:00
cd "$pkgname-$pkgver"
DESTDIR="$pkgdir" meson install -C ../build
2021-12-26 22:58:52 +00:00
install -dm0755 "$pkgdir"/var/lib/lxcfs
}