Skip to content

Commit

Permalink
add fastcgi to bundle
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterPetrik committed Sep 22, 2020
1 parent 2b857bb commit 841e35f
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions qgis_bundle/recipes/fastcgi/recipe.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
#!/bin/bash

function check_fastcgi() {
env_var_exists VERSION_fastcgi
env_var_exists LINK_fastcgi
}

function bundle_fastcgi() {
try cp -av $DEPS_LIB_DIR/libfcgi.*dylib $BUNDLE_LIB_DIR
}

function fix_binaries_fastcgi() {
install_name_id @rpath/$LINK_fastcgi $BUNDLE_CONTENTS_DIR/MacOS/lib/$LINK_fastcgi
}

function fix_binaries_fastcgi_check() {
verify_binary $BUNDLE_LIB_DIR/$LINK_fastcgi
}

function fix_paths_fastcgi() {
:
}

function fix_paths_fastcgi_check() {
:
}

0 comments on commit 841e35f

Please sign in to comment.