View crrcsim-hg-pkgbuild-a.diff
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff -Naru crrcsim-hg/PKGBUILD crrcsim-hg.patched/PKGBUILD | |
--- crrcsim-hg/PKGBUILD 2017-10-30 12:31:34.000000000 +0300 | |
+++ crrcsim-hg.patched/PKGBUILD 2023-02-17 23:52:43.103406527 +0300 | |
@@ -14,12 +14,12 @@ | |
arch=('i686' 'x86_64') | |
url="http://sourceforge.net/projects/crrcsim/" | |
license=('GPL') | |
-depends=('sdl>=1.2.5' 'portaudio' 'libjpeg' 'cgal') | |
+depends=('sdl>=1.2.5' 'portaudio' 'libjpeg' 'gmp') | |
groups=() |
View Makefile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.SUFFIXES: | |
map_files := $(wildcard *.map) | |
jnx_files := $(map_files:%.map=%.jnx) | |
.PHONY: all | |
all: $(jnx_files) | |
%.jnx: %.png %.map | |
bash slazav2jnx.sh $^ $@ |
View load-color-profile.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env bash | |
set -Eeuo pipefail | |
PATH=/sbin:/usr/sbin:/bin:/usr/bin | |
export PATH | |
APP_TITLE='Load Color Profile' | |
PROGNAME="${0##*/}" |
View PKGBUILD
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Dmitry Efremov defremovАТahaDОТru | |
# In order to build this package you need to manually download | |
# the Adobe XMP SDK source archive (XMP-Toolkit-SDK-CC201607.zip) from: | |
# | |
# https://www.adobe.com/devnet/xmp.html | |
# | |
# and the Adobe DNG SDK source archive (dng_sdk_1_5_1.zip) from: | |
# | |
# https://www.adobe.com/support/downloads/dng/dng_sdk.html |
View foo2hbpl1.c.print-quality.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/foo2hbpl1.c b/foo2hbpl1.c | |
index fb4f448..d0ad6cd 100644 | |
--- a/foo2hbpl1.c | |
+++ b/foo2hbpl1.c | |
@@ -52,11 +52,38 @@ static char Version[] = "$Id: foo2hbpl1.c,v 1.3 2014/03/30 05:08:32 rick Exp $"; | |
/* | |
* Command line options | |
*/ | |
-int MediaCode = 0; | |
+char *ClutFilePath = NULL; |