view pixmaps/gen-inline-pixbufs.sh @ 2094:e319a4fe6e32 v7.2.378

updated for version 7.2.378 Problem: C function declaration indented too much. (Rui) Solution: Don't see a line containing { or } as a type. (Matt Wozniski)
author Bram Moolenaar <bram@zimbu.org>
date Tue, 02 Mar 2010 12:38:22 +0100
parents 3fc0f57ecb91
children d4faa2c5211b
line wrap: on
line source

#! /bin/sh

prefix=stock_
list=

for file in "$@"
do
    name=`echo "$file" | sed 's|-|_|g; s|^.*/||; s|\..*$||'`
    list="$list $prefix$name $file"
done

gdk-pixbuf-csource --raw --static --build-list $list