2022-08-23 04:45:08 +03:00
|
|
|
distributable:
|
2023-04-10 05:00:03 +03:00
|
|
|
#FIXME: pandoc and pandoc-cli have been split :/
|
|
|
|
# url: https://hackage.haskell.org/package/pandoc-cli{{ version }}/pandoc-cli-{{ version }}.tar.gz
|
|
|
|
url: https://github.com/jgm/pandoc/archive/refs/tags/{{ version }}.tar.gz
|
2022-08-23 04:45:08 +03:00
|
|
|
strip-components: 1
|
|
|
|
|
|
|
|
#FIXME pandoc has 4 digit versions : /
|
|
|
|
# so we miss a whole bunch
|
|
|
|
versions:
|
|
|
|
github: jgm/pandoc
|
|
|
|
strip: /^pandoc /
|
|
|
|
|
|
|
|
provides:
|
|
|
|
- bin/pandoc
|
|
|
|
|
|
|
|
dependencies:
|
|
|
|
gnu.org/gmp: 6
|
|
|
|
zlib.net: 1
|
2022-12-02 02:19:23 +03:00
|
|
|
sourceware.org/libffi: 3
|
2022-08-23 04:45:08 +03:00
|
|
|
|
|
|
|
build:
|
|
|
|
dependencies:
|
|
|
|
tea.xyz/gx/cc: c99
|
2023-08-24 08:48:07 +03:00
|
|
|
# https://github.com/jgm/pandoc/blob/54b9eeb6a72f1c6f0ae3675cb9e7c29fa3183316/pandoc-cli/pandoc-cli.cabal#L14C18-L15C44
|
|
|
|
haskell.org: '>=8.6.5<9.6'
|
2022-08-23 04:45:08 +03:00
|
|
|
haskell.org/cabal: ^3
|
2023-04-10 05:00:03 +03:00
|
|
|
crates.io/semverator: ^0
|
|
|
|
working-directory: pandoc-cli
|
2022-08-23 04:45:08 +03:00
|
|
|
script: |-
|
2023-04-10 05:00:03 +03:00
|
|
|
if semverator satisfies '^2' '{{ version }}'; then
|
|
|
|
# pandoc 2.x - no pandoc-cli subdirectory
|
|
|
|
cd ..
|
|
|
|
fi
|
|
|
|
|
2022-08-23 04:45:08 +03:00
|
|
|
cabal update
|
2023-02-14 06:08:18 +03:00
|
|
|
mkdir -p {{prefix}}/bin
|
2022-08-23 04:45:08 +03:00
|
|
|
cabal install $ARGS
|
|
|
|
env:
|
|
|
|
ARGS:
|
|
|
|
- --install-method=copy
|
|
|
|
- --installdir={{prefix}}/bin
|
2023-02-14 06:08:18 +03:00
|
|
|
- --jobs={{hw.concurrency}}
|
2023-04-10 05:00:03 +03:00
|
|
|
# https://pandoc.org/installing.html#creating-a-relocatable-binary
|
|
|
|
- -fembed_data_files
|
2023-02-14 06:08:18 +03:00
|
|
|
linux:
|
|
|
|
ARGS:
|
|
|
|
# else segfaults
|
|
|
|
- --enable-relocatable
|
2023-08-24 08:48:07 +03:00
|
|
|
- --ghc-option=-fPIC
|
|
|
|
- --ghc-option=-optl=-pie
|
2022-08-23 04:45:08 +03:00
|
|
|
|
|
|
|
test:
|
|
|
|
fixture: |
|
|
|
|
# tea
|
|
|
|
brew2 for you
|
|
|
|
script:
|
|
|
|
pandoc -f markdown -t html5 $FIXTURE
|
|
|
|
#TODO check output is HTML!
|