diff options
author | davidovski <david@davidovski.xyz> | 2022-07-15 00:52:21 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-07-15 00:52:21 +0100 |
commit | 9a26d3fdc7fca2df6f824b56034ab9a823e898d8 (patch) | |
tree | 278bbf05c72536a30e701eebbd3546ba137543e7 /repo/rarian | |
parent | f6332a43c35387c4a2dea1746be5fd092890ae0e (diff) |
added python deps for libvirt
Diffstat (limited to 'repo/rarian')
-rw-r--r-- | repo/rarian/rarian.xibuild | 35 | ||||
-rw-r--r-- | repo/rarian/user-segfault.patch | 14 |
2 files changed, 49 insertions, 0 deletions
diff --git a/repo/rarian/rarian.xibuild b/repo/rarian/rarian.xibuild new file mode 100644 index 0000000..854539f --- /dev/null +++ b/repo/rarian/rarian.xibuild @@ -0,0 +1,35 @@ +#!/bin/sh + +NAME="rarian" +DESC="Documentation meta-data library, designed as a replacement for Scrollkeeper." + +MAKEDEPS="libxslt" + +PKG_VER=0.8.1 +SOURCE="https://download.gnome.org/sources/rarian/0.8/rarian-$PKG_VER.tar.bz2" + +ADDITIONAL=" +user-segfault.patch +" + +prepare() { + cd "$BUILD_ROOT" + apply_patches +} + +build() { + cd "$BUILD_ROOT" + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --enable-scrollkeeper-compat \ + --disable-static + make +} + +package() { + cd "$BUILD_ROOT" + make -j1 DESTDIR="$PKG_DEST" install +} + diff --git a/repo/rarian/user-segfault.patch b/repo/rarian/user-segfault.patch new file mode 100644 index 0000000..29ab1e5 --- /dev/null +++ b/repo/rarian/user-segfault.patch @@ -0,0 +1,14 @@ +--- rarian-0.8.1/util/rarian-sk-get-cl.cpp~ 2008-07-28 19:23:28.000000000 +0200 ++++ rarian-0.8.1/util/rarian-sk-get-cl.cpp 2008-07-28 19:23:28.000000000 +0200 +@@ -160,6 +160,11 @@ + { + char *filename = NULL; + char *user = getenv ("USERNAME"); ++ ++ if (user == NULL) { ++ user = getenv ("USER"); ++ } ++ + char *basepath = NULL; + int i=0; + int last = 0; |