summaryrefslogtreecommitdiffstats
path: root/gnome-doc-utils
diff options
context:
space:
mode:
authorkj-sh6042025-05-07 22:19:56 -0400
committerkj-sh6042025-05-07 22:19:56 -0400
commitf5aa5342add73a2ab4548c7b894c77b7ced1987c (patch)
tree5513bf930cbb8ce5042fc48f3201156b923b52a9 /gnome-doc-utils
parent7443f24cfe307b49819616713fe390b118d46689 (diff)
refactor: update more `agave` stuff²
Diffstat (limited to 'gnome-doc-utils')
-rw-r--r--gnome-doc-utils/.SRCINFO18
-rw-r--r--gnome-doc-utils/.gitignore7
-rw-r--r--gnome-doc-utils/PKGBUILD42
3 files changed, 0 insertions, 67 deletions
diff --git a/gnome-doc-utils/.SRCINFO b/gnome-doc-utils/.SRCINFO
deleted file mode 100644
index 67e44d5..0000000
--- a/gnome-doc-utils/.SRCINFO
+++ /dev/null
@@ -1,18 +0,0 @@
-pkgbase = gnome-doc-utils
- pkgdesc = Documentation utilities for Gnome
- pkgver = 0.20.10+16+gc03cc09
- pkgrel = 4
- url = https://www.gnome.org
- arch = any
- license = GPL
- license = LGPL
- makedepends = intltool
- makedepends = gnome-common
- makedepends = git
- depends = docbook-xml
- depends = rarian
- depends = python2-libxml2
- source = git+https://gitlab.gnome.org/Archive/gnome-doc-utils.git#commit=c03cc0963996934e03587af3e351c2bb9dab6b2a
- sha256sums = SKIP
-
-pkgname = gnome-doc-utils
diff --git a/gnome-doc-utils/.gitignore b/gnome-doc-utils/.gitignore
deleted file mode 100644
index 8be33f1..0000000
--- a/gnome-doc-utils/.gitignore
+++ /dev/null
@@ -1,7 +0,0 @@
-pkg/
-src/
-*.tar
-*.tar.zst
-*.tar.gz
-*.tar.xz
-gnome-doc-utils/
diff --git a/gnome-doc-utils/PKGBUILD b/gnome-doc-utils/PKGBUILD
deleted file mode 100644
index 326aa76..0000000
--- a/gnome-doc-utils/PKGBUILD
+++ /dev/null
@@ -1,42 +0,0 @@
-# Maintainer: Patrick Northon <northon_patrick3@yahoo.ca>
-# Contributor: Brian Bidulock <bidulock@openss7.org>
-# Contributor: Jan de Groot <jgc@archlinux.org>
-
-pkgname=gnome-doc-utils
-pkgver=0.20.10+16+gc03cc09
-pkgrel=4
-pkgdesc="Documentation utilities for Gnome"
-arch=('any')
-license=('GPL' 'LGPL')
-depends=(docbook-xml rarian python2-libxml2)
-makedepends=(intltool gnome-common git)
-url="https://www.gnome.org"
-_commit=c03cc0963996934e03587af3e351c2bb9dab6b2a # master
-source=("git+https://git.gnome.org/browse/gnome-doc-utils#commit=$_commit")
-source=("git+https://gitlab.gnome.org/Archive/gnome-doc-utils.git#commit=$_commit")
-sha256sums=('SKIP')
-
-pkgver() {
- cd $pkgname
- git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
- cd $pkgname
- rm -f m4/glib-gettext.m4
- sed -i 's/SUBDIRS = .*/SUBDIRS = /' 'doc/Makefile.am'
- NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
- cd "$pkgname"
- PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
- --sysconfdir=/etc --mandir=/usr/share/man \
- --localstatedir=/var --disable-scrollkeeper
- make
-}
-
-package() {
- cd "$pkgname"
- make DESTDIR="$pkgdir" install
-}