kit

kit
git clone https://git.ryansepassi.com/git/kit.git
Log | Files | Refs | README

miniz.recipe (602B)


      1 # test/ecosystem/recipes/miniz.recipe — real-world C build gate for miniz.
      2 # Contract documented in sqlite.recipe.
      3 #
      4 # The 3.0.2 release zip is the amalgamated single-TU distribution (miniz.c +
      5 # miniz.h at the archive root), so it extracts flat — ECO_SRCDIR is ".".
      6 
      7 ECO_VERSION=3.0.2
      8 ECO_URL="https://github.com/richgel999/miniz/releases/download/3.0.2/miniz-3.0.2.zip"
      9 ECO_SHA256=ada38db0b703a56d3dd6d57bf84a9c5d664921d870d8fea4db153979fb5332c5
     10 ECO_SRCDIR=.
     11 ECO_INCLUDES="."
     12 ECO_DEFINES=""
     13 ECO_LIBS=""
     14 ECO_DRIVER=use/use_miniz.c
     15 
     16 eco_lib_srcs() { echo "$ECO_SRC/miniz.c"; }
     17 
     18 eco_run() { "$1"; }