view pixmaps/gen-inline-pixbufs.sh @ 9570:695186e11daa v7.4.2062

commit https://github.com/vim/vim/commit/840268400dc8fda62a14f8a084e8b1ea46619454 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jul 17 20:37:43 2016 +0200 patch 7.4.2062 Problem: Using dummy variable to compute struct member offset. Solution: Use offsetof().
author Christian Brabandt <cb@256bit.org>
date Sun, 17 Jul 2016 20:45:05 +0200
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