# HG changeset patch # User Masamichi Hosoda # Date 1439647114 -32400 # Node ID ac4b8fa454879e80f94e8d5ce1e81b06273d761e # Parent f6b6aac893b69f9a43812ec5fc2b1654bc7ae9f0 Rename libertine fonts spec file diff -r f6b6aac893b6 -r ac4b8fa45487 gub/specs/fonts-libertine.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gub/specs/fonts-libertine.py Sat Aug 15 22:58:34 2015 +0900 @@ -0,0 +1,13 @@ +from gub import tools +from gub import build + +class Fonts_libertine (build.BinaryBuild): + source = 'http://sourceforge.net/projects/linuxlibertine/files/linuxlibertine/5.3.0/LinLibertineOTF_5.3.0_2012_07_02.tgz&strip=0' + def install (self): + self.system ('mkdir -p %(install_prefix)s/share/fonts/opentype/linux-libertine') + self.system ('cp %(srcdir)s/* %(install_prefix)s/share/fonts/opentype/linux-libertine/') + def package (self): + build.AutoBuild.package (self) + +class Fonts_libertine__tools (tools.AutoBuild, Fonts_libertine): + pass diff -r f6b6aac893b6 -r ac4b8fa45487 gub/specs/libertine-fonts.py --- a/gub/specs/libertine-fonts.py Mon Aug 10 23:02:15 2015 +0900 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,13 +0,0 @@ -from gub import tools -from gub import build - -class Libertine_fonts (build.BinaryBuild): - source = 'http://sourceforge.net/projects/linuxlibertine/files/linuxlibertine/5.3.0/LinLibertineOTF_5.3.0_2012_07_02.tgz&strip=0' - def install (self): - self.system ('mkdir -p %(install_prefix)s/share/fonts/opentype/linux-libertine') - self.system ('cp %(srcdir)s/* %(install_prefix)s/share/fonts/opentype/linux-libertine/') - def package (self): - build.AutoBuild.package (self) - -class Libertine_fonts__tools (tools.AutoBuild, Libertine_fonts): - pass diff -r f6b6aac893b6 -r ac4b8fa45487 gub/specs/lilypond-doc.py --- a/gub/specs/lilypond-doc.py Mon Aug 10 23:02:15 2015 +0900 +++ b/gub/specs/lilypond-doc.py Sat Aug 15 22:58:34 2015 +0900 @@ -12,7 +12,7 @@ 'tools::imagemagick', 'tools::rsync', # ugh, we depend on *rsync* !? #'tools::texlive', - 'tools::libertine-fonts', + 'tools::fonts-libertine', 'system::makeinfo', 'system::zip', ])