summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarioTD2023-01-21 00:56:15 -0500
committerDarioTD2023-01-21 00:56:15 -0500
commitd5bdf696239ffb0830a029535ba1caf27fade509 (patch)
tree57386091fbefc16eb80c0e620ca3906430aca04c
parent02508ce088ddab43a953fc5330ad072939e85c3b (diff)
downloadaur-lib32-graphene.tar.gz
disable makedeps gtk_doc and gobject-introspection "https://archlinux.org/todo/disable-gobject-introspection-on-lib32-libraries"
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD10
2 files changed, 6 insertions, 8 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 0e1d4d6fc39d..984610fce71b 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,13 +1,11 @@
pkgbase = lib32-graphene
pkgdesc = A thin layer of graphic data types (32-bit)
pkgver = 1.10.8
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/ebassi/graphene
arch = x86_64
license = MIT
makedepends = git
- makedepends = gobject-introspection
- makedepends = gtk-doc
makedepends = meson
depends = lib32-glib2
depends = graphene
diff --git a/PKGBUILD b/PKGBUILD
index f354e6593327..70de3e9e0982 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,17 +1,17 @@
# Maintainer: DarioTD <dario.tabares@hotmail.com>
-# Maintainer: Andrew Sun <adsun701@gmail.com>
+# Contributor: Andrew Sun <adsun701@gmail.com>
# Contributor: orumin <dev@orum.in>
_basename=graphene
pkgname="lib32-$_basename"
pkgver=1.10.8
-pkgrel=1
+pkgrel=2
pkgdesc="A thin layer of graphic data types (32-bit)"
url="https://github.com/ebassi/graphene"
arch=('x86_64')
license=(MIT)
depends=('lib32-glib2' 'graphene')
-makedepends=('git' 'gobject-introspection' 'gtk-doc' 'meson')
+makedepends=('git' 'meson')
_commit=4e2578450809c2099400cf85caf18eafcd7100aa # tags/1.10.8^0
source=("git+https://github.com/ebassi/graphene#commit=$_commit")
sha256sums=('SKIP')
@@ -23,8 +23,8 @@ pkgver() {
build() {
local meson_options=(
- -D gtk_doc=true
- -D introspection=enabled
+ -D gtk_doc=false
+ -D introspection=disabled
-D tests=true
)