[gimp-web-devel/hugo: 7/7] fixing mangled names and adding a build script




commit c75876c758cb2ca998ada6dc51fe0c46edb5d7c2
Author: robin-swift <robinswiftart gmail com>
Date:   Sun Jul 24 14:13:06 2022 +0100

    fixing mangled names and adding a build script

 content/default.css      |  6 +++---
 scripts/make_api_docs.sh | 25 +++++++++++++++++++++++++
 2 files changed, 28 insertions(+), 3 deletions(-)
---
diff --git a/content/default.css b/content/default.css
index 597c8cd..de43de1 100644
--- a/content/default.css
+++ b/content/default.css
@@ -4,9 +4,9 @@
  * so keep a backup of this file while working with it. Niklas */
 
 /* Copyright (C) 2002-2006 by The GIMP Web Team - Contributions by:
- * Ville Pätsi (drc), Henrik Brix Andersen (brix), Carol Spears
- * (carol), Niklas Mattisson (scizzo), Raphaël Quinet (raphael),
- * Branko Collin (branko), Sven Neumann (neo) and Øyvind Kolås
+ * Ville Pätsi (drc), Henrik Brix Andersen (brix), Carol Spears
+ * (carol), Niklas Mattisson (scizzo), Raphaël Quinet (raphael),
+ * Branko Collin (branko), Sven Neumann (neo) and Øyvind Kolås
  * (pippin)
  *
  * This style sheet and corresponding site layout are designed to be
diff --git a/scripts/make_api_docs.sh b/scripts/make_api_docs.sh
new file mode 100755
index 0000000..b7c00d9
--- /dev/null
+++ b/scripts/make_api_docs.sh
@@ -0,0 +1,25 @@
+#!/bin/bash
+
+# git clone https://gitlab.gnome.org/GNOME/gimp
+
+function build_api_docs () {
+rm -fr gimp_$1
+cp -r gimp gimp_$1
+cd gimp_$1
+git checkout $1
+aclocal
+autoupdate
+autoconf
+libtoolize
+automake --add-missing
+./configure --prefix=`pwd` --enable-gtk-doc --enable-gtk-doc-app \
+    --disable-python
+make
+make install
+cd ..
+}
+
+build_api_docs GIMP_2_7_5
+build_api_docs GIMP_2_8_8
+build_api_docs GIMP_2_9_8
+build_api_docs GIMP_2_10_32


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]