diff options
author | Andreas Baumann <mail@andreasbaumann.cc> | 2018-08-04 06:25:25 +0000 |
---|---|---|
committer | Andreas Baumann <mail@andreasbaumann.cc> | 2018-08-04 06:25:51 +0000 |
commit | c6f80a5c810b90154fdf321cd0a4957d5a391ac3 (patch) | |
tree | c44c30cd8eb4191440626a856633736ce368e84d | |
parent | 28cb1b2a1433935ddd9071fbd743d92bf3ba3cf9 (diff) | |
download | packages-c6f80a5c810b90154fdf321cd0a4957d5a391ac3.tar.xz |
core/dbus: added i486-specific patch
-rw-r--r-- | core/dbus/PKGBUILD | 16 | ||||
-rw-r--r-- | extra/meson/PKGBUILD | 4 | ||||
-rw-r--r-- | extra/python-lxml/PKGBUILD | 4 |
3 files changed, 24 insertions, 0 deletions
diff --git a/core/dbus/PKGBUILD b/core/dbus/PKGBUILD new file mode 100644 index 00000000..f2ad0e68 --- /dev/null +++ b/core/dbus/PKGBUILD @@ -0,0 +1,16 @@ +# i486-specific +if [ "${CARCH}" = "i486" ]; then + # no documentation + makedepends=(${makedepends[@]//docbook-xsl/}) + makedepends=(${makedepends[@]//yelp-tools/}) + makedepends=(${makedepends[@]//doxygen/}) + makedepends=(${makedepends[@]//graphviz/}) + + eval "$( + declare -f build | \ + sed ' + s/configure/configure --disable-xml-docs --disable-doxygen-docs --disable-ducktype-docs/ + ' + )" +fi + diff --git a/extra/meson/PKGBUILD b/extra/meson/PKGBUILD new file mode 100644 index 00000000..ed73f8de --- /dev/null +++ b/extra/meson/PKGBUILD @@ -0,0 +1,4 @@ +# i486-specific +if [ "${CARCH}" = "i486" ]; then + unset check +fi diff --git a/extra/python-lxml/PKGBUILD b/extra/python-lxml/PKGBUILD new file mode 100644 index 00000000..ed73f8de --- /dev/null +++ b/extra/python-lxml/PKGBUILD @@ -0,0 +1,4 @@ +# i486-specific +if [ "${CARCH}" = "i486" ]; then + unset check +fi |