40b13e798b
In this commit, I'm including two new softwares * CImg: A small, simple image toolkit library * WxCam: a small, simple, wxGTK-based webcam application
13 lines
398 B
Bash
13 lines
398 B
Bash
|
|
source $stdenv/setup
|
|
|
|
unpackPhase
|
|
cd $sourceRoot
|
|
|
|
install -dm 755 $out/include/cimg $out/share/doc/cimg/html $out/share/cimg/examples $out/share/cimg/plugins
|
|
|
|
install -m 644 CImg.h $out/include/cimg
|
|
cp -dr --no-preserve=ownership html/* $out/share/doc/cimg/html/
|
|
cp -dr --no-preserve=ownership examples/* $out/share/cimg/examples/
|
|
cp -dr --no-preserve=ownership plugins/* $out/share/cimg/plugins/
|