diff --git a/recipes/ucsc-bedgraphtobigwig/meta.yaml b/recipes/ucsc-bedgraphtobigwig/meta.yaml index 14a8480f5135d..9aec6cf66f7a4 100644 --- a/recipes/ucsc-bedgraphtobigwig/meta.yaml +++ b/recipes/ucsc-bedgraphtobigwig/meta.yaml @@ -12,9 +12,10 @@ source: sha256: "{{ sha256 }}" patches: - "include.patch" + - "patch1.patch" build: - number: 0 + number: 1 run_exports: - {{ pin_subpackage(package, max_pin=None) }} @@ -40,6 +41,10 @@ test: # just check for existence, because the individual packages have no unified behavior - which {{ program }} +extra: + additional-platforms: + - linux-aarch64 + about: home: "http://hgdownload.cse.ucsc.edu/admin/exe/" license: "varies; see http://genome.ucsc.edu/license" diff --git a/recipes/ucsc-bedgraphtobigwig/patch1.patch b/recipes/ucsc-bedgraphtobigwig/patch1.patch new file mode 100644 index 0000000000000..483b0342a43da --- /dev/null +++ b/recipes/ucsc-bedgraphtobigwig/patch1.patch @@ -0,0 +1,19 @@ +--- userApps/kent/src/lib/htmshell.c.old 2022-10-28 08:32:08.344445121 +0000 ++++ userApps/kent/src/lib/htmshell.c 2022-10-28 08:32:31.708262420 +0000 +@@ -711,11 +711,11 @@ + puts("Status: 400\r"); + puts("Content-Type: text/plain; charset=UTF-8\r"); + puts("\r"); +-if (format != NULL && args != NULL) +- { +- vfprintf(stdout, format, args); +- fprintf(stdout, "\n"); +- } ++if (format != NULL) ++ { ++ vfprintf(stdout, format, args); ++ fprintf(stdout, "\n"); ++ } + exit(-1); + } +