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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <float.h> | |
#include <inttypes.h> | |
#include "nanosvg.h" | |
#define NANOSVGRAST_IMPLEMENTATION | |
#include "nanosvgrast.h" | |
#define STB_IMAGE_WRITE_IMPLEMENTATION | |
#include "stb_image_write.h" |
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
OBJS = \ | |
7zAlloc.o \ | |
7zArcIn.o \ | |
7zBuf.o \ | |
7zBuf2.o \ | |
7zCrc.o \ | |
7zCrcOpt.o \ | |
7zDec.o \ | |
7zFile.o \ | |
7zStream.o \ |
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
/** | |
* This is free and unencumbered software released into the public domain. | |
* | |
* Anyone is free to copy, modify, publish, use, compile, sell, or | |
* distribute this software, either in source code form or as a compiled | |
* binary, for any purpose, commercial or non-commercial, and by any | |
* means. | |
* | |
* In jurisdictions that recognize copyright laws, the author or authors | |
* of this software dedicate any and all copyright interest in the |
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
#!/bin/sh | |
set -e | |
set -x | |
gamedir="Tiny Bunny" | |
sdkver="7.3.5" | |
if [ "$(printf "$PWD" | tail -c28)" = "/steamapps/common/Tiny Bunny" ]; then | |
gamedir="." | |
fi |
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
#!/bin/bash | |
# requires fltk-dialog to be in PATH | |
# https://github.com/darealshinji/fltk-dialog/releases/tag/continuous | |
steamconfig="${HOME%/}/.steam" | |
pidfile="$steamconfig/steam.pid" | |
steambin="$steamconfig/steam/steam.sh" | |
logfile="$(mktemp)" | |
pid_steam=0 | |
pid_launcher=0 |
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
#include <FL/Fl.H> | |
#include <FL/Fl_Box.H> | |
#include <FL/Fl_Double_Window.H> | |
#include <FL/Fl_GIF_Image.H> | |
#include <FL/Fl_JPEG_Image.H> | |
#include <FL/Fl_PNG_Image.H> | |
#include <FL/Fl_XBM_Image.H> | |
#include <string.h> | |
enum { |
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
#!/bin/sh | |
# build script for Ubuntu 16.04 or newer | |
set -e | |
set -x | |
sudo apt update | |
sudo apt upgrade | |
sudo apt install --no-install-recommends \ | |
build-essential \ |
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
#!/bin/bash | |
MAKEFLAGS="-j4" | |
build_nasm () { | |
ver="2.14.02" | |
wget https://www.nasm.us/pub/nasm/releasebuilds/$ver/nasm-${ver}.tar.xz | |
tar xf nasm-${ver}.tar.xz | |
cd nasm-$ver | |
./configure |
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
This file is part of MXE. See LICENSE.md for licensing information. | |
Contains ad hoc patches for cross building. | |
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 | |
From: darealshinji <[email protected]> | |
Date: Sun, 23 Jun 2019 21:13:09 +0200 | |
Subject: [PATCH 1/1] add suffix to lcms2 symbols | |
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
#!/bin/sh | |
set -e | |
set -x | |
sudo apt update -y | |
sudo apt upgrade -y | |
# prevent linking against an outdated libass | |
sudo apt purge -y libass-dev |