2008-04-28 12:08:40 +02:00
|
|
|
args : with args;
|
|
|
|
rec {
|
|
|
|
src = fetchurl {
|
2011-05-24 17:13:54 +02:00
|
|
|
url = http://downloads.sourceforge.net/linuxlibertine/5.0.0/LinLibertineSRC_2011_05_22.tgz;
|
|
|
|
sha256 = "1cr0kvvlqrcmaxfl6szfp3m93mcnhmypx33dxmdm3xdxxkab74vg";
|
2008-04-28 12:08:40 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [fontforge];
|
|
|
|
configureFlags = [];
|
|
|
|
|
|
|
|
/* doConfigure should be specified separately */
|
|
|
|
phaseNames = ["doUnpack" "generateFontsFromSFD" "installFonts"];
|
|
|
|
|
2008-04-28 13:06:56 +02:00
|
|
|
extraFontForgeCommands = ''
|
|
|
|
ScaleToEm(1000);
|
|
|
|
'';
|
2008-04-28 12:08:40 +02:00
|
|
|
|
2011-05-24 17:13:54 +02:00
|
|
|
doUnpack = fullDepEntry ''
|
|
|
|
tar xf ${src}
|
|
|
|
'' ["minInit"];
|
|
|
|
|
|
|
|
name = "linux-libertine-5.0.0";
|
2008-04-28 12:08:40 +02:00
|
|
|
meta = {
|
|
|
|
description = "Linux Libertine Fonts";
|
|
|
|
homepage = http://linuxlibertine.sf.net;
|
|
|
|
};
|
|
|
|
}
|