mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
36 lines
867 B
YAML
36 lines
867 B
YAML
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: '*'
|
|
python.org: '>=3<3.12'
|
|
script: |
|
|
# Set the version
|
|
sed -i.bak -e 's/^VERSION=.*/VERSION={{ version }}/' tools/update-version
|
|
rm tools/update-version.bak
|
|
|
|
# Don't try to chown/chmod on install
|
|
sed -i.bak -e '/\(chown\|chmod\)/d' libfuse/Makefile
|
|
rm libfuse/Makefile.bak
|
|
|
|
make --jobs {{ hw.concurrency }}
|
|
make install DESTDIR="{{prefix}}" PREFIX=""
|
|
env:
|
|
CFLAGS: -Wno-implicit-function-declaration
|
|
|
|
provides:
|
|
- bin/mergerfs
|
|
- bin/mergerfs-fusermount
|
|
- sbin/mount.mergerfs
|
|
|
|
# FIXME: Maybe? Complicated to test something that mounts filesystems...
|
|
test: |
|
|
mergerfs --version | grep "{{ version }}"
|