pantry/projects/spawn.link/package.yml

40 lines
1,008 B
YAML
Raw Permalink Normal View History

2023-05-06 02:04:05 +03:00
distributable:
url: https://github.com/trapexit/mergerfs/archive/refs/tags/{{ version }}.tar.gz
strip-components: 1
versions:
github: trapexit/mergerfs
platforms: linux
build:
dependencies:
git-scm.org: '*'
2023-10-03 18:23:56 +03:00
python.org: '>=3<3.12'
script:
2023-05-06 02:04:05 +03:00
# Set the version
- run: sed -i -e 's/^VERSION=.*/VERSION={{ version }}/' update-version
if: <2.39
working-directory: tools
- run: sed -i -e 's/^VERSION=.*/VERSION={{ version }}/' update-version
if: '>=2.39'
working-directory: buildtools
2023-05-06 02:04:05 +03:00
# Don't try to chown/chmod on install
- sed -i -e '/\(chown\|chmod\)/d' libfuse/Makefile
2023-05-06 02:04:05 +03:00
- make --jobs {{ hw.concurrency }}
- make install DESTDIR="{{prefix}}" PREFIX=""
2023-07-16 07:21:29 +03:00
env:
CFLAGS: -Wno-implicit-function-declaration
CC: clang
CXX: clang++
2023-05-06 02:04:05 +03:00
provides:
- bin/mergerfs
- bin/mergerfs-fusermount
- sbin/mount.mergerfs
# FIXME: Maybe? Complicated to test something that mounts filesystems...
test: mergerfs --version | grep "{{ version }}"