1
0
mirror of git://projects.qi-hardware.com/openwrt-packages.git synced 2025-04-21 12:27:27 +03:00

fbida: a few applications for viewing and editing images; ghostscript as

a requirement for fbgs, a wrapper script for viewing ps/pdf files on the
framebuffer console using fbi, an image viewer for the linux framebuffer
console.
This commit is contained in:
kyak
2010-10-18 20:39:48 +04:00
parent 1a6e2dc80b
commit 277888f878
5 changed files with 159 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
--- fbida-2.07.orig/fbgs 2010-10-18 20:26:32.264246468 +0400
+++ fbida-2.07/fbgs 2010-10-18 20:26:57.179244034 +0400
@@ -1,7 +1,7 @@
-#!/bin/bash
+#!/bin/sh
# tmp dir
-DIR="$(mktemp -dtp ${TMPDIR-/var/tmp} fbgs-XXXXXX)"
+DIR="$(mktemp -dtp ${TMPDIR-/tmp} fbgs-XXXXXX)"
test -d "$DIR" || exit 1
trap "rm -rf $DIR" EXIT