<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[HyperForum — [Collection] Compilation of packages and ports (not in repositories)]]></title>
	<link rel="self" href="https://forums.hyperbola.info/extern.php?action=feed&amp;tid=773&amp;type=atom" />
	<updated>2026-05-23T11:49:42Z</updated>
	<generator>PunBB</generator>
	<id>https://forums.hyperbola.info/viewtopic.php?id=773</id>
		<entry>
			<title type="html"><![CDATA[Re: [Collection] Compilation of packages and ports (not in repositories)]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=8891#p8891" />
			<content type="html"><![CDATA[<p>Package <strong>lolcat-c</strong></p><p><strong>PKGBUILD</strong></p><div class="codebox"><pre><code># Maintainer (Arch): Ricardo (XenGi) Band &lt;email@ricardo.band&gt;
# Maintainer: Allen123456hello

pkgname=lolcat-c
_pkgname=lolcat
pkgver=1.4
pkgrel=1
pkgdesc=&quot;High-performance implementation of lolcat&quot;
arch=(&#039;i686&#039; &#039;x86_64&#039;)
url=&quot;https://github.com/jaseg/lolcat&quot;
license=(&#039;WTFPL&#039;)
provides=(&#039;lolcat&#039;)
replaces=(&#039;lolcat&#039;)
conflicts=(&#039;lolcat&#039;)
source=(&quot;https://github.com/jaseg/${_pkgname}/archive/v${pkgver}.tar.gz&quot;)
sha512sums=(&#039;8f73121ef372383f5ff1d444f69a6255f5ff65abfbb4f103197480f957dcc440375c7c01be5c33247ce920ff39e34519702f7550b9b8ada2f18190d0ae948024&#039;)

build() {
  cd &quot;${srcdir}/${_pkgname}-${pkgver}&quot;
  make
}

package() {
  cd &quot;${srcdir}/${_pkgname}-${pkgver}&quot;
  mkdir -p &quot;${pkgdir}/usr/bin&quot;
  make DESTDIR=&quot;${pkgdir}/usr/bin&quot; install
  install -Dm644 LICENSE -t &quot;${pkgdir}/usr/share/licenses/$pkgname&quot;
}</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Allen123456hello]]></name>
				<uri>https://forums.hyperbola.info/profile.php?id=755</uri>
			</author>
			<updated>2026-05-23T11:49:42Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=8891#p8891</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: [Collection] Compilation of packages and ports (not in repositories)]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=8875#p8875" />
			<content type="html"><![CDATA[<p>Package <strong>linux-libre-lts-api-headers-without-rsync</strong></p><p>An alternative way to build kernel api headers (without rsync).</p><p><strong>PKGBUILD</strong></p><div class="codebox"><pre><code># Maintainer: André Silva &lt;emulatorman@hyperbola.info&gt;
# Contributor: Tobias Dausend &lt;throgh@hyperbola.info&gt;
# Contributor (Parabola): Luke Shumaker &lt;lukeshu@sbcglobal.net&gt;
# Maintainer: Allen123456hello

# Based on linux-api-headers package

# toolchain build order: linux-libre-lts-api-headers-without-rsync-&gt;glibc-&gt;binutils-&gt;gcc-&gt;binutils-&gt;glibc

pkgname=linux-libre-lts-api-headers-without-rsync
_pkgbasever=5.10-gnu1
_pkgver=${_pkgbasever}

_srcname=linux-${_pkgbasever%-*}
pkgver=${_pkgver//-/_}
pkgrel=2
pkgdesc=&quot;Kernel headers sanitized for use in userspace&quot;
arch=(&#039;i686&#039; &#039;x86_64&#039;)
url=&quot;https://www.gnu.org/software/libc&quot;
license=(&#039;GPL-2&#039;)
provides=(&#039;linux-api-headers&#039; &#039;linux-libre-lts-api-headers&#039;)
conflicts=(&#039;linux-api-headers&#039; &#039;linux-libre-lts-api-headers&#039;)
replaces=(&#039;linux-api-headers&#039;)
source=(&quot;https://linux-libre.fsfla.org/pub/linux-libre/releases/${_pkgbasever}/linux-libre-${_pkgbasever}.tar.lz&quot;
        &quot;https://linux-libre.fsfla.org/pub/linux-libre/releases/${_pkgbasever}/linux-libre-${_pkgbasever}.tar.lz.sign&quot;)
        #&quot;https://linux-libre.fsfla.org/pub/linux-libre/releases/${_pkgver}/patch-${_pkgbasever}-${_pkgver}.lz&quot;
        #&quot;https://linux-libre.fsfla.org/pub/linux-libre/releases/${_pkgver}/patch-${_pkgbasever}-${_pkgver}.lz.sign&quot;)
sha512sums=(&#039;b16238c8b746bc9b5078c991847909eba268221f945fb55579e99fc9540b88ccfca5d71f4249f4d3795c522570c30477c986f0f4b98c4029cca1235786c7bc52&#039;
            &#039;SKIP&#039;)
validpgpkeys=(
              &#039;474402C8C582DAFBE389C427BCB7CF877E7D47A7&#039; # Alexandre Oliva
)

prepare() {
  cd &quot;${srcdir}/${_srcname}&quot;

  # add upstream patch
  if [ &quot;${_pkgbasever}&quot; != &quot;${_pkgver}&quot; ]; then
    patch -p1 -i &quot;${srcdir}/patch-${_pkgbasever}-${_pkgver}&quot;
  fi
}

build() {
  cd &quot;${srcdir}/${_srcname}&quot;

  make mrproper

  make headers
}

package() {
  cd &quot;${srcdir}/${_srcname}&quot;
  # clean-up unnecessary files generated before install
  find usr/include -type f ! -name &#039;*.h&#039; -delete

  install -d &quot;${pkgdir}/usr&quot;
  cp -rv usr/include &quot;${pkgdir}/usr&quot;

  # use headers from libdrm
  rm -r &quot;${pkgdir}&quot;/usr/include/drm
  
  # clean-up unnecessary files generated during install
  find &quot;${pkgdir}&quot; \( -name .install -o -name ..install.cmd \) -delete

  # install license file
  install -dm755 &quot;${pkgdir}/usr/share/licenses/$pkgname&quot;
  install -m644 COPYING &quot;${pkgdir}/usr/share/licenses/$pkgname&quot;
}</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Allen123456hello]]></name>
				<uri>https://forums.hyperbola.info/profile.php?id=755</uri>
			</author>
			<updated>2026-05-10T11:20:50Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=8875#p8875</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: [Collection] Compilation of packages and ports (not in repositories)]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=8868#p8868" />
			<content type="html"><![CDATA[<p>Package <strong>pkgconf</strong></p><p>May be an alternative to pkg-config.</p><p><strong>PKGBUILD</strong></p><div class="codebox"><pre><code># Maintainer: Allen123456hello

pkgname=pkgconf
pkgver=2.5.1
pkgrel=1
pkgdesc=&quot;A newer system for managing library compile/link flags&quot;
url=&quot;https://github.com/pkgconf/pkgconf&quot;
license=(ISC)
arch=(i686 x86_64)
depends=(glibc)
provides=(pkg-config pkgconfig)
conflicts=(pkg-config)
source=(&quot;https://distfiles.ariadne.space/pkgconf/${pkgname}-${pkgver}.tar.xz&quot;)
sha512sums=(&#039;e654c3a460e5f0f801e8ac43ad9086f397d1da0553186ff05f5f0e18ffdac99fb652fd9b6c0379db4bc8307699699d69bc66d13cc85a4a6b0cd36462f5948a1d&#039;)

build() {
  cd $pkgname-$pkgver
  ./configure --prefix=/usr --disable-static --docdir=/usr/share/doc/$pkgname-$pkgver 
  make
}

package() {
  cd $pkgname-$pkgver
  make DESTDIR=&quot;$pkgdir&quot; install
  ln -sv pkgconf &quot;$pkgdir/usr/bin/pkg-config&quot;
  ln -sv pkgconf.1 &quot;$pkgdir/usr/share/man/man1/pkg-config.1&quot;
  install -Dm644 COPYING -t &quot;$pkgdir/usr/share/licenses/$pkgname&quot;
}</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Allen123456hello]]></name>
				<uri>https://forums.hyperbola.info/profile.php?id=755</uri>
			</author>
			<updated>2026-05-04T12:01:08Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=8868#p8868</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: [Collection] Compilation of packages and ports (not in repositories)]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=8866#p8866" />
			<content type="html"><![CDATA[<p>Package <strong>catgirl</strong></p><p><strong>PKGBUILD</strong></p><div class="codebox"><pre><code># Maintainer (Arch): Sebastian LaVine &lt;mail@smlavine.com&gt;
# Contributor (Arch): lillian rose winter &lt;hi@neko.vg&gt;
# Contributor (Arch): Evan McCarthy &lt;evan@mccarthy.mn&gt;
# Maintainer: Tobias Dausend &lt;throgh@hyperbola.info&gt;

pkgname=catgirl
_pkgver=2.2a
pkgver=2.2.a
pkgrel=1
pkgdesc=&quot;TLS-only terminal IRC client&quot;
arch=(&#039;i686&#039; &#039;x86_64&#039;)
url=&#039;https://git.causal.agency/catgirl/&#039;
license=(&#039;GPL-3&#039;)
depends=(&#039;libressl&#039; &#039;ncurses&#039;)
source=(&quot;https://git.causal.agency/${pkgname}/snapshot/${pkgname}-${_pkgver}.tar.gz&quot;)
sha512sums=(&#039;988750c960630ec8314ebde7b9802f8b6a3087f733359f61f49c4f83cb6e327c03cde9ad88f2cb535d56ead1376cd121a7124c367c90394a6d4d7f80b25e329f&#039;)

build() {
  cd &quot;${pkgname}-${_pkgver}&quot;
  ./configure \
    --prefix=/usr \
    --mandir=/usr/share/man
  make all
}

package() {
  cd &quot;${pkgname}-${_pkgver}&quot;
  make DESTDIR=&quot;$pkgdir/&quot; install
  install -Dm644 LICENSE -t &quot;${pkgdir}/usr/share/licenses/$pkgname&quot;
}</code></pre></div>]]></content>
			<author>
				<name><![CDATA[throgh]]></name>
				<uri>https://forums.hyperbola.info/profile.php?id=347</uri>
			</author>
			<updated>2026-05-02T22:26:23Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=8866#p8866</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: [Collection] Compilation of packages and ports (not in repositories)]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=8855#p8855" />
			<content type="html"><![CDATA[<p>Package <strong>emwm</strong></p><p><strong>PKGBUILD</strong></p><div class="codebox"><pre><code># Maintainer (Arch): Balló György &lt;ballogyor+arch at gmail dot com&gt;
# Maintainer: Tobias Dausend &lt;throgh@hyperbola.info&gt;

pkgname=emwm
pkgver=1.3.1
pkgrel=1
pkgdesc=&quot;Free and libre fork of the Motif Window Manager&quot;
arch=(&#039;i686&#039; &#039;x86_64&#039;)
url=&#039;https://fastestcode.org/emwm.html&#039;
license=(&#039;LGPL-2.1&#039;)
depends=(&#039;glibc&#039; &#039;libx11&#039; &#039;libxext&#039; &#039;libxinerama&#039; &#039;libxrandr&#039; &#039;libxt&#039; &#039;motif&#039;)
source=(&quot;https://fastestcode.org/dl/emwm-src-$pkgver.tar.xz&quot;
        &quot;emwm.desktop&quot;)
sha512sums=(&#039;2370aef68d4524991d188786d75d3e5a223a477ac665244d7a764c536fe6bac76207a352f55e5b1408f9b7d7192599ddb54207ebff6660f5aa4598356997b175&#039;
            &#039;d1193bfdf2f6245d6836123f0da0845db6e30340aaca54048a814c304a00ad94c36bc89f6b2584ea13b5a66c467910f9bb8b30a70db6b9c85c5460fc986775dc&#039;)

build() {
  cd &quot;$pkgname-src-$pkgver&quot;
  make
}

package () {
  cd &quot;$pkgname-src-$pkgver&quot;
  install -dm755 &quot;$pkgdir/usr/bin&quot;
  make PREFIX=&quot;$pkgdir/usr&quot; RCDIR=&quot;$pkgdir/etc/X11&quot; APPLRESDIR=&quot;$pkgdir/etc/X11/app-defaults&quot; install
  install -Dm644 -t &quot;$pkgdir/usr/share/xsessions&quot; &quot;$srcdir/emwm.desktop&quot;
  install -Dm644 COPYING -t &quot;$pkgdir/usr/share/licenses/$pkgname&quot;
}</code></pre></div><p><strong>emwm.desktop</strong></p><div class="codebox"><pre><code>[Desktop Entry]
Encoding=UTF-8
Type=XSession
Exec=/usr/bin/emwm
TryExec=/usr/bin/emwm
Name=EMWM</code></pre></div>]]></content>
			<author>
				<name><![CDATA[throgh]]></name>
				<uri>https://forums.hyperbola.info/profile.php?id=347</uri>
			</author>
			<updated>2026-04-15T21:27:09Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=8855#p8855</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: [Collection] Compilation of packages and ports (not in repositories)]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=8854#p8854" />
			<content type="html"><![CDATA[<p>Package <strong>motif</strong> (former <strong>openmotif</strong>)</p><p><strong>PKGBUILD</strong></p><div class="codebox"><pre><code># Maintainer (Arch): Sergej Pupykin &lt;pupykin.s+arch@gmail.com&gt;
# Contributor (Arch): Enrico Morelli &lt;morelli@cerm.unifi.it&gt;
# Maintainer: Tobias Dausend &lt;throgh@hyperbola.info&gt;

pkgname=motif
pkgver=2.5.1
pkgrel=1
pkgdesc=&quot;GUI component toolkit&quot;
arch=(&#039;i686&#039; &#039;x86_64&#039;)
url=&#039;https://sourceforge.net/projects/motif/&#039;
license=(&#039;LGPL-2.1&#039;)
depends=(&#039;libxp&#039; &#039;libxft&#039; &#039;libxmu&#039; &#039;libpng&#039; &#039;libjpeg-turbo&#039; &#039;libxpm&#039;)
makedepends=(&#039;xenocara-xbitmaps&#039; &#039;xenocara-proto&#039; &#039;quilt&#039;)
source=(&quot;${pkgname}-${pkgver}.tar.gz::https://github.com/thentenaar/motif/archive/refs/tags/v${pkgver}.tar.gz&quot;
        &quot;fix-build.patch&quot;)
sha512sums=(&#039;8550b9e3a67f3c6d0aa285d9e2cdfe90df9d355ee72dc2204aba39446f27aff18ddd3b078ea5e33658086d1d53af1442c2772e953fb306f51a605f3ebb2871d8&#039;
            &#039;1640b5c99ac4c416ef474ef0a21b8e406b82b264bda49cff6ea09165dc90a377b17d3456ea4751e46b650130d267f3cbf901ee0decf7771ad7f40f25d124c741&#039;)

prepare() {
  cd &quot;$pkgname-$pkgver&quot;
  patch -Np1 -i ${srcdir}/fix-build.patch
  touch NEWS AUTHORS
  autoreconf -if
}

build() {
  cd &quot;$pkgname-$pkgver&quot;
  ./configure \
    --prefix=/usr
  sed -i -e &#039;s/ -shared / -Wl,-O1,--as-needed\0/g&#039; libtool
  make
}

package() {
  cd &quot;$pkgname-$pkgver&quot;
  make DESTDIR=&quot;$pkgdir&quot; install
  install -Dm644 LICENSE -t &quot;${pkgdir}/usr/share/licenses/$pkgname&quot;
}</code></pre></div><p><strong>fix-build.patch</strong></p><div class="codebox"><pre><code>--- a/lib/Xm/ImageCache.c    2026-03-28 19:09:13.000000000 +0100
+++ b/lib/Xm/ImageCache.c    2026-04-15 23:06:47.589673867 +0200
@@ -1927,9 +1927,6 @@
  * Count trailing zeroes
  */
 static unsigned int ctz(unsigned long n) {
-#if defined(__has_builtin) &amp;&amp; __has_builtin(__builtin_ctzl)
-    return __builtin_ctzl(n);
-#else
     static const unsigned int mod37[] = {
         -1, 0, 1, 26, 2, 23, 27, 0, 3, 16, 24, 30, 28, 11, 0, 13, 4,
         7, 17, 0, 25, 22, 31, 15, 29, 10, 12, 6, 0, 21, 14, 9, 5,
@@ -1937,26 +1934,16 @@
     };
 
     return mod37[(-n &amp; n) % 37];
-#endif
 }
 
 /**
  * Count the number of bits set in a long
  */
 static unsigned int ones(unsigned long n) {
-#if defined(__has_builtin) &amp;&amp; __has_builtin(__builtin_popcountl)
-    return __builtin_popcountl(n);
-#elif sizeof(unsigned long) == 8
-    n = n - ((n &gt;&gt; 1) &amp; 0x5555555555555555);
-    n = (n &amp; 0x3333333333333333) + ((n &gt;&gt; 2) &amp; 0x3333333333333333);
-    n = (n + (n &gt;&gt; 4)) &amp; 0x0F0F0F0F0F0F0F0F;
-    return (n * 0x0101010101010101) &gt;&gt; 56;
-#else
     n = n - ((n &gt;&gt; 1) &amp; 0x55555555);
     n = (n &amp; 0x33333333) + ((n &gt;&gt; 2) &amp; 0x33333333);
     n = (n + (n &gt;&gt; 4)) &amp; 0x0F0F0F0F;
     return (n * 0x01010101) &gt;&gt; 24;
-#endif
 }
 
 /**</code></pre></div>]]></content>
			<author>
				<name><![CDATA[throgh]]></name>
				<uri>https://forums.hyperbola.info/profile.php?id=347</uri>
			</author>
			<updated>2026-04-15T21:26:20Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=8854#p8854</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: [Collection] Compilation of packages and ports (not in repositories)]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=8671#p8671" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>aloniv wrote:</cite><blockquote><p>I noticed that no NZB usenet downloader was available in Hyperbola and I remembered using NZBGet in the past.</p><p>The PKGBUILD needed is based on the official Arch one - one just needs to disable openssl, remove the systemd path and rename unrar to unar:</p><p><strong>PKGBUILD</strong><br /></p><div class="codebox"><pre><code># Maintainer: Jaroslav Lichtblau &lt;svetlemodry@archlinux.org&gt;
# Maintainer: Carl Smedstad &lt;carsme@archlinux.org&gt;
# Contributor: Alexander Rødseth &lt;rodseth@gmail.com&gt;

pkgname=nzbget
pkgver=25.4
pkgrel=2
pkgdesc=&quot;Efficient usenet downloader&quot;
arch=(&#039;x86_64&#039;)
url=&quot;https://nzbget.com&quot;
license=(&#039;GPL-2.0-or-later&#039;)
depends=(
  &#039;boost-libs&#039;
  &#039;gcc-libs&#039;
  &#039;glibc&#039;
  &#039;libxml2&#039;
  &#039;ncurses&#039;
  &#039;zlib&#039;
)
makedepends=(
  &#039;boost&#039;
  &#039;cmake&#039;
  &#039;git&#039;
)
optdepends=(
  &#039;python: to run included scripts&#039;
  &#039;unar: unpacking archives&#039;
  &#039;7zip: unpacking archives&#039;
)
source=(
  &quot;https://github.com/nzbgetcom/nzbget/archive/v$pkgver/$pkgname-$pkgver.tar.gz&quot;
  &quot;git+https://github.com/nzbgetcom/par2cmdline-turbo.git&quot;
  &quot;$pkgname-use-par2cmdline-turbo-from-sources.patch&quot;
)
sha256sums=(&#039;2603116ffaef4992621cf7a82ce300f41a676a312de784f2bac5058abc1a2385&#039;
            &#039;SKIP&#039;
            &#039;9608a7166969593fea35c2db61a788a0c0083dece1907fcc33c978c70226ff0a&#039;)

prepare() {
  cd $pkgname-$pkgver
  patch -Np1 &lt; ../$pkgname-use-par2cmdline-turbo-from-sources.patch
}

build() {
  cd $pkgname-$pkgver
  cmake -S . -B build \
    -DCMAKE_BUILD_TYPE=None \
    -DCMAKE_INSTALL_PREFIX=/usr \
    -Wno-dev \
    -DENABLE_TESTS=ON \
    -DDISABLE_TLS=ON
  cmake --build build
}

check() {
  cd $pkgname-$pkgver
  ctest --test-dir build --output-on-failure
}

package() {
  cd $pkgname-$pkgver
  DESTDIR=&quot;$pkgdir&quot; cmake --install build
  install -vDm644 -t &quot;$pkgdir/usr/share/doc/$pkgname&quot; ./*.md
}</code></pre></div><p><strong>nzbget-use-par2cmdline-turbo-from-sources.patch</strong><br /></p><div class="codebox"><pre><code>diff --unified --recursive --text --new-file nzbget-25.3.orig/cmake/par2-turbo.cmake nzbget-25.3/cmake/par2-turbo.cmake
--- nzbget-25.3.orig/cmake/par2-turbo.cmake    2025-09-01 20:50:58.443363400 +0200
+++ nzbget-25.3/cmake/par2-turbo.cmake    2025-09-01 20:51:31.722598503 +0200
@@ -51,7 +51,7 @@
 ExternalProject_add(
     par2-turbo
     PREFIX            par2-turbo
-    GIT_REPOSITORY    https://github.com/nzbgetcom/par2cmdline-turbo.git
+    GIT_REPOSITORY    file://${CMAKE_SOURCE_DIR}/../par2cmdline-turbo
     GIT_TAG            v1.3.0-20250808
     TLS_VERIFY        TRUE
     GIT_SHALLOW        TRUE</code></pre></div></blockquote></div>]]></content>
			<author>
				<name><![CDATA[throgh]]></name>
				<uri>https://forums.hyperbola.info/profile.php?id=347</uri>
			</author>
			<updated>2025-11-13T18:32:21Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=8671#p8671</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: [Collection] Compilation of packages and ports (not in repositories)]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=8632#p8632" />
			<content type="html"><![CDATA[<p>Package <strong>crimson-fields</strong></p><p><strong>PKGBUILD</strong></p><div class="codebox"><pre><code># Maintainer (Arch): Winston Weinert &lt;winston@ml1.net&gt;
# Maintainer: Tobias Dausend &lt;throgh@hyperbola.info&gt;

pkgname=crimson-fields
_pkgname=crimson
pkgver=0.5.3
pkgrel=1
pkgdesc=&quot;Free and libre turn-based tactical game with a hex grid and multiplayer support&quot;
arch=(&#039;i686&#039; &#039;x86_64&#039;)
url=&#039;http://crimson.seul.org&#039;
license=(&#039;GPL-2&#039;)
depends=(&#039;sdl&#039; &#039;sdl_ttf&#039; &#039;sdl_mixer&#039; &#039;sdl_net&#039;)
groups=(&#039;games&#039;)
source=(&quot;http://crimson.seul.org/files/$_pkgname-$pkgver.tar.gz&quot;)
sha512sums=(&#039;56a0c8c3e271f6ca53baaee23c28b594033b2d3e4b22fb4cd58c9858dc2bda556a13d1204cdba607da0a4414affb455b1403dde73e385a1accdd5162ec9e0a89&#039;)

build() {
  cd &quot;$srcdir/$_pkgname-$pkgver&quot;

  ./configure \
    --prefix=/usr \
    --bindir=/usr/games \
    --datarootdir=/usr/share/games
  make
}

package() {
  cd &quot;$srcdir/$_pkgname-$pkgver&quot;

  make DESTDIR=&quot;$pkgdir/&quot; install
  mv &quot;$pkgdir&quot;/usr/share/games/{applications,man,pixmaps} &quot;$pkgdir&quot;/usr/share
  install -Dm644 COPYING -t &quot;$pkgdir&quot;/usr/share/licenses/$pkgname
}</code></pre></div>]]></content>
			<author>
				<name><![CDATA[throgh]]></name>
				<uri>https://forums.hyperbola.info/profile.php?id=347</uri>
			</author>
			<updated>2025-05-20T23:35:54Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=8632#p8632</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: [Collection] Compilation of packages and ports (not in repositories)]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=8631#p8631" />
			<content type="html"><![CDATA[<p>Package <strong>heroes</strong></p><p><strong>PKGBUILD</strong></p><div class="codebox"><pre><code># Maintainer (Arch): Steve Engledow &lt;steve@offend.me.uk&gt;
# Maintainer: Tobias Dausend &lt;throgh@hyperbola.info&gt;

pkgname=heroes
pkgver=0.21
_debver=$pkgver
_debrel=18
pkgrel=2
pkgdesc=&quot;An arena fighting game.&quot;
url=&#039;https://heroes.sourceforge.net&#039;
arch=(&#039;i686&#039; &#039;x86_64&#039;)
license=(&#039;GPL-2&#039;)
depends=(&#039;sdl&#039; &#039;sdl_mixer&#039;)
makedepends=(&#039;quilt&#039;)
groups=(&#039;games&#039;)
source=(&quot;https://downloads.sourceforge.net/heroes/$pkgname-$pkgver.tar.gz&quot;
        &quot;https://downloads.sourceforge.net/heroes/$pkgname-data-1.5.tar.gz&quot;
        &quot;https://downloads.sourceforge.net/heroes/$pkgname-sound-tracks-1.0.tar.gz&quot;
        &quot;https://downloads.sourceforge.net/heroes/$pkgname-sound-effects-1.0.tar.gz&quot;
        &quot;https://downloads.sourceforge.net/heroes/$pkgname-hq-sound-tracks-1.0.tar.gz&quot;
        &quot;https://deb.debian.org/debian/pool/main/h/heroes/heroes_$_debver-$_debrel.debian.tar.xz&quot;)
sha512sums=(&#039;8a28f7c0af8f194fd3557293dd65d555f4cf40e236f776ed1ef7b75f032fa511bae750d9312ba62d183129f8a529c515178ecd40f719c85583c519d531191d30&#039;
            &#039;ec001cda314b43b4e98f784e86bfd29da1cbac75ae981cf9ba738de0e366b47a112a21f0382a8c02737968d295f292e42451250ff9fdaee068662d0f221821f1&#039;
            &#039;eefa299a12b9d0a72eb73b978eab3cce5a6bcafb28acf52981762b64b7d74b7128c8a7e8517b6dcbb5281be0481c4d2fdd01de8706aefe08263ba5de4f29efae&#039;
            &#039;7ac2d0353122839a1b3266c6bb91c8279beade9d41f87031e4116c0a27fc7979d7a8d64fe1eab77b39a4da5869179f0ce7b8a137134df70159d745b7a63156cf&#039;
            &#039;565229fb00ac06d1a3ea37335138ffe87564317eab4d96b069ecd70e276f92141d9c746bc0b2d2f0abdd47e60ca580e063a2cb265d068624b4f306ce9c37f7fc&#039;
            &#039;c558bf06f76e5e9c74f86d14ec36d351395b2b69de7eb5c4c3bc3e18e3911585f9eca7a0f46e6b6076dafe4abca972302eeb6f4173853bd5e946eb0785eea98e&#039;)

prepare() {
  cd &quot;$pkgname-$pkgver&quot;
  if [[ ${pkgver%.*} = ${_debver%.*} ]]; then
    # Debian patches
    export QUILT_PATCHES=debian/patches
    export QUILT_REFRESH_ARGS=&#039;-p ab --no-timestamps --no-index&#039;
    export QUILT_DIFF_ARGS=&#039;--no-timestamps&#039;

    mv &quot;$srcdir&quot;/debian .

    quilt push -av
  fi
}

build() {
  cd &quot;$pkgname-$pkgver&quot;
  LDFLAGS=-lm ./configure \
    --prefix=/usr \
    --bin=/usr/games \
    --datadir=/usr/share/games
  make

  cd &quot;$srcdir/$pkgname-data-1.5&quot;
  ./configure \
    --prefix=/usr \
    --datadir=/usr/share/games
  make

  cd &quot;$srcdir/$pkgname-sound-tracks-1.0&quot;
  ./configure \
    --prefix=/usr \
    --datadir=/usr/share/games
  make

  cd &quot;$srcdir/$pkgname-sound-effects-1.0&quot;
  ./configure \
    --prefix=/usr \
    --datadir=/usr/share/games
  make

  cd &quot;$srcdir/$pkgname-hq-sound-tracks-1.0&quot;
  ./configure \
    --prefix=/usr \
    --datadir=/usr/share/games
  make
}

package() {
  cd &quot;$pkgname-$pkgver&quot;
  make DESTDIR=&quot;$pkgdir/&quot; install
  mv &quot;$pkgdir/&quot;usr/share/games/locale &quot;$pkgdir/&quot;usr/share
  install -Dm644 debian/$pkgname.desktop &quot;$pkgdir&quot;/usr/share/applications/$pkgname.desktop
  install -Dm644 debian/$pkgname.xpm &quot;$pkgdir&quot;/usr/share/pixmaps/$pkgname.xpm
  install -Dm644 COPYING -t &quot;$pkgdir/usr/share/licenses/$pkgname&quot;

  cd &quot;$srcdir/$pkgname-data-1.5&quot;
  make DESTDIR=&quot;$pkgdir/&quot; install

  cd &quot;$srcdir/$pkgname-sound-tracks-1.0&quot;
  make DESTDIR=&quot;$pkgdir/&quot; install

  cd &quot;$srcdir/$pkgname-sound-effects-1.0&quot;
  make DESTDIR=&quot;$pkgdir/&quot; install

  cd &quot;$srcdir/$pkgname-hq-sound-tracks-1.0&quot;
  make DESTDIR=&quot;$pkgdir/&quot; install
}</code></pre></div>]]></content>
			<author>
				<name><![CDATA[throgh]]></name>
				<uri>https://forums.hyperbola.info/profile.php?id=347</uri>
			</author>
			<updated>2025-05-20T23:35:05Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=8631#p8631</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: [Collection] Compilation of packages and ports (not in repositories)]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=8630#p8630" />
			<content type="html"><![CDATA[<p>Package <strong>dustrac</strong></p><p><strong>PKGBUILD</strong></p><div class="codebox"><pre><code># Maintainer (Arch): Frederic Bezies &lt;fredbezies at gmail dot com&gt;
# Contributor (Arch): Daniel Milde
# Maintainer: Jayvee Enaguas &lt;harvettfox96@dismail.de&gt;
# Contributor: Tobias Dausend &lt;throgh@hyperbola.info&gt;

pkgname=dustrac
_pkgname=DustRacing2D
pkgver=2.1.1
pkgrel=2
_debver=2.1.1
_debrel=1
pkgdesc=&#039;Dust Racing 2D is a traditional top-down car racing game including a level editor&#039;
arch=(&#039;x86_64&#039; &#039;i686&#039;)
url=&#039;https://juzzlin.github.io/DustRacing2D/&#039;
license=(&#039;GPL-3&#039; &#039;CC-BY-SA-3.0&#039;)
depends=(&#039;qt-tools&#039; &#039;openal&#039; &#039;libvorbis&#039; &#039;glu&#039;)
makedepends=(&#039;cmake&#039; &#039;quilt&#039;)
groups=(&#039;games&#039;)
source=(&quot;${pkgname}-${pkgver}.tar.gz::https://github.com/juzzlin/${_pkgname}/archive/${pkgver}.tar.gz&quot;
    &quot;https://deb.debian.org/debian/pool/main/d/${pkgname}/${pkgname}_${_debver}-${_debrel}.debian.tar.xz&quot;)
sha512sums=(&#039;9a49cd0302ab47b12ee587a33cc74c1df2bf6cf7925141cbf957fc90a5c1a34423d4420be28bcb6909a862daa12d6214b397fd0fc77e9e18fa649f3ca5c2e1ab&#039;
        &#039;8824ae4dd0d281d945521262eb0a88927539ee335f475f3f42b5876bece2af32eaa1e4651b0be40d07cfd282a851c4a508229c90c23e02b40e5d3a7377399f57&#039;)

prepare() {
  cd ${_pkgname}-${pkgver}/

  if [[ ${pkgver%.*} = ${_debver%.*} ]]; then
    # Debian patches
    export QUILT_PATCHES=debian/patches
    export QUILT_REFRESH_ARGS=&#039;-p ab --no-timestamps --no-index&#039;
    export QUILT_DIFF_ARGS=&#039;--no-timestamps&#039;

    mv &quot;$srcdir&quot;/debian/ ./

    quilt push -av
  fi
}

build() {
  cd ${_pkgname}-${pkgver}/

  mkdir build &amp;&amp; cd build
  cmake ../ \
    -DReleaseBuild=ON \
    -DCMAKE_INSTALL_PREFIX=/usr/ \
    -DBIN_PATH=games
  make
}

package() {
  cd ${_pkgname}-${pkgver}/build/

  make DESTDIR=${pkgdir} install
  # Install licence file.
  install -Dm644 ../COPYING -t ${pkgdir}/usr/share/licenses/${pkgname}/
}</code></pre></div>]]></content>
			<author>
				<name><![CDATA[throgh]]></name>
				<uri>https://forums.hyperbola.info/profile.php?id=347</uri>
			</author>
			<updated>2025-05-20T23:34:21Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=8630#p8630</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: [Collection] Compilation of packages and ports (not in repositories)]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=8629#p8629" />
			<content type="html"><![CDATA[<p>Package <strong>sdl3</strong></p><p><strong>PKGBUILD</strong></p><div class="codebox"><pre><code># Maintainer (Arch): Sven-Hendrik Haase &lt;svenstaro@archlinux.org&gt;
# Maintainer: Tobias Dausend &lt;throgh@hyperbola.info&gt;

pkgname=sdl3
pkgver=3.2.14
pkgrel=1
pkgdesc=&quot;A library for portable low-level access to a video framebuffer, audio output, mouse, and keyboard (Version 3)&quot;
arch=(&#039;i686&#039; &#039;x86_64&#039;)
url=&quot;https://www.libsdl.org&quot;
license=(&#039;zlib&#039;)
depends=(&#039;glibc&#039; &#039;libxext&#039; &#039;libxrender&#039; &#039;libx11&#039; &#039;mesa-libgl&#039; &#039;libxcursor&#039; &#039;libusb&#039;)
makedepends=(&#039;cmake&#039; &#039;ninja&#039; &#039;jack&#039; &#039;alsa-lib&#039; &#039;mesa&#039; &#039;libxrandr&#039; &#039;libxinerama&#039; &#039;libxkbcommon&#039;
             &#039;libxss&#039; &#039;sndio&#039;)
optdepends=(
  &#039;alsa-lib: ALSA audio driver&#039;
  &#039;sndio: sndio audio driver&#039;
)
source=(&quot;https://github.com/libsdl-org/SDL/releases/download/release-${pkgver}/SDL3-${pkgver}.tar.gz&quot;)
sha512sums=(&#039;7e501bda73cc7b42b860e6ba6f9a0450fdb5014f5999afa64ccd6b4eb633edf6646fd1e251d58189649755a883d7dd51e5bcc53e841974180ed73d56fb8e29cd&#039;)

build() {
  CFLAGS+=&quot; -ffat-lto-objects&quot;
  cmake -S SDL3-${pkgver} \
    -B build -G Ninja \
    -D CMAKE_BUILD_TYPE=None \
    -D CMAKE_INSTALL_PREFIX=/usr \
    -D SDL_STATIC=OFF \
    -D SDL_RPATH=OFF
  cmake --build build
}

package() {
  DESTDIR=&quot;${pkgdir}&quot; cmake --install build
  install -Dm644 SDL3-${pkgver}/LICENSE.txt &quot;$pkgdir/usr/share/licenses/$pkgname/LICENSE&quot;
}</code></pre></div>]]></content>
			<author>
				<name><![CDATA[throgh]]></name>
				<uri>https://forums.hyperbola.info/profile.php?id=347</uri>
			</author>
			<updated>2025-05-19T22:39:03Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=8629#p8629</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: [Collection] Compilation of packages and ports (not in repositories)]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=8628#p8628" />
			<content type="html"><![CDATA[<p>Package <strong>scappit</strong></p><p><strong>PKGBUILD</strong></p><div class="codebox"><pre><code># Maintainer (Arch): Oliver Giles &lt;web ohwg net&gt;
# Maintainer: Tobias Dausend &lt;throgh@hyperbola.info&gt;

pkgname=scappit
pkgver=0.3
pkgrel=1
pkgdesc=&quot;Simple screen capture and annotation&quot;
arch=(&#039;i686&#039; &#039;x86_64&#039;)
url=&#039;https://scappit.ohwg.net&#039;
license=(&#039;Expat&#039;)
depends=(&#039;qt-base&#039; &#039;qt-x11extras&#039; &#039;gnome-icon-theme&#039;)
makedepends=(&#039;cmake&#039;)
options=(&#039;strip&#039;)
source=(&quot;${pkgname}-${pkgver}.tar.gz::https://github.com/ohwgiles/$pkgname/archive/v${pkgver}.tar.gz&quot;
        &quot;${pkgname}.desktop&quot;)
sha512sums=(&#039;66eac8dbd1f259ac92403029cd3558605d00f61c57846cce547ece503a9e9f691d98dafa50eab256448b762ac763c78886e0fa1ad6de331521de390f811994cf&#039;
            &#039;41364792a000f6065c85c60422a5c68c56951063be11a2d65ce25a7e38469b1c8e165e0de1fb766e978a6af124a9fd272c39e7303731bdecb3046be53e639ed1&#039;)

build() {
  cmake \
    -S $pkgname-$pkgver \
    -B build \
    -DCMAKE_INSTALL_PREFIX=/usr \
    -DCMAKE_BUILD_TYPE=Release \
    -Wno-dev
  make -C build
}

package() {
  make DESTDIR=&quot;$pkgdir/&quot; -C build install/strip
  install -Dm644 &quot;$srcdir/$pkgname.desktop&quot; -t &quot;$pkgdir/usr/share/applications&quot;
  install -Dm644 &quot;$srcdir/$pkgname-$pkgver/LICENSE&quot; -t &quot;$pkgdir/usr/share/licenses/$pkgname&quot;
}</code></pre></div><p><strong>scappit.desktop</strong></p><div class="codebox"><pre><code>[Desktop Entry]
Version=1.0
Name=Scappit
GenericName=Simple screen capture and annotation
Comment=Simple screen capture and annotation
Type=Application
Categories=Graphics;GTK;
Exec=scappit
TryExec=scappit
Terminal=false
StartupNotify=true
Icon=applets-screenshooter</code></pre></div>]]></content>
			<author>
				<name><![CDATA[throgh]]></name>
				<uri>https://forums.hyperbola.info/profile.php?id=347</uri>
			</author>
			<updated>2025-05-19T22:14:30Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=8628#p8628</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: [Collection] Compilation of packages and ports (not in repositories)]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=8617#p8617" />
			<content type="html"><![CDATA[<p>Package <strong>rmw</strong></p><p><strong>PKGBUILD</strong></p><div class="codebox"><pre><code># Maintainer (Arch): Andy Alt &lt;arch_stanton5995 at proton.me&gt;
# Contributor (Arch): Oliver Jaksch &lt;arch-aur at com-in dot de&gt;
# Maintainer: Tobias Dausend &lt;throgh@hyperbola.info&gt;

pkgname=rmw
pkgver=0.8.0
pkgrel=1
pkgdesc=&quot;Trash/recycle bin utility for the commandline&quot;
arch=(&#039;i686&#039; &#039;x86_64&#039;)
url=&#039;https://theimpossibleastronaut.com/rmw-website/&#039;
license=(&#039;GPL-3&#039;)
depends=(&#039;glibc&#039; &#039;ncurses&#039;)
makedepends=(&#039;meson&#039; &#039;ninja&#039;)
source=(&quot;https://github.com/theimpossibleastronaut/rmw/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz&quot;)
sha512sums=(&#039;5744e4b46edecfd6d0588d9b0ecbc8a91e8495f2e07d87599d045f620a2ae08381e9efa97cfa51c83cfcf8a2e89a594f8e87c374dc452ffb5b1bd2371b46aa22&#039;)

build() {
  hyperbola-meson $pkgname-$pkgver build -Db_sanitize=none
  meson compile -v -C build
}

package() {
  DESTDIR=&quot;$pkgdir&quot; meson install -C build
  rm -rf &quot;$pkgdir/usr/share/doc/$pkgname/external&quot;
  install -Dm644 &quot;$srcdir/$pkgname-$pkgver/COPYING&quot; -t &quot;$pkgdir/usr/share/licenses/$pkgname&quot;
}</code></pre></div>]]></content>
			<author>
				<name><![CDATA[throgh]]></name>
				<uri>https://forums.hyperbola.info/profile.php?id=347</uri>
			</author>
			<updated>2025-04-15T22:01:22Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=8617#p8617</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: [Collection] Compilation of packages and ports (not in repositories)]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=8616#p8616" />
			<content type="html"><![CDATA[<p>Package <strong>cdrip-tools</strong></p><p><strong>PKGBUILD</strong></p><div class="codebox"><pre><code># Maintainer (Arch): John Lane &lt;archlinux at jelmail dot com&gt;
# Maintainer: Tobias Dausend &lt;throgh@hyperbolainfo&gt;

pkgname=cdrip-tools
pkgver=0.3
pkgrel=1
pkgdesc=&quot;Commandline accuraterip verifier and rip offset fixer&quot;
url=&#039;https://github.com/spadev/cdrip-tools&#039;
arch=(&#039;i686&#039; &#039;x86_64&#039;)
license=(&#039;GPL-3&#039;)
depends=(&#039;python&#039; &#039;libsndfile&#039;)
source=(&quot;${pkgname}-${pkgver}.zip::https://github.com/spadev/${pkgname}/archive/master.zip&quot;)
sha512sums=(&#039;43493a2f7b0f8cd0fc9f3de82cc3d1f0bb81b770e468ba7bf3259c89cbd7de3d1ba1295d1f628cf3dc7d65ab8fbc4cca7d73b85309932dd81eb0369d9137c20a&#039;)

prepare() {
  mv &quot;$pkgname-master&quot; &quot;$pkgname-$pkgver&quot;
}

build() {
  cd $srcdir/$pkgname-$pkgver
  cc -o ckcdda ckcdda.c
  cc -o splitaudio -l sndfile splitaudio.c

  # nasty library hack - change name to something less generic
  sed -i -e &#039;s/^import utils/import cdrip_utils as utils/&#039; \
         -e &#039;s/^from utils/from cdrip_utils/&#039; *.py
}

package() {
  cd $srcdir/$pkgname-$pkgver
  install -Dm644 README.md $pkgdir/usr/share/doc/$pkgname/README.md
  install -Dm755 arverify.py $pkgdir/usr/bin/arverify
  install -Dm755 fixoffset.py $pkgdir/usr/bin/fixoffset
  install -Dm755 splitaudio $pkgdir/usr/bin/
  install -Dm755 ckcdda $pkgdir/usr/bin/

  # nasty library hack - install renamed library (hopefully in site-packages!)
  pylibdir=$(python -c &quot;import sys; print(sys.path[-1]);&quot;)
  install -Dm755 utils.py $pkgdir${pylibdir}/cdrip_utils.py

  install -Dm644 LICENSE -t $pkgdir/usr/share/licenses/$pkgname
}</code></pre></div>]]></content>
			<author>
				<name><![CDATA[throgh]]></name>
				<uri>https://forums.hyperbola.info/profile.php?id=347</uri>
			</author>
			<updated>2025-04-13T19:52:10Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=8616#p8616</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: [Collection] Compilation of packages and ports (not in repositories)]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=8581#p8581" />
			<content type="html"><![CDATA[<p>Package <strong>fricas</strong></p><p><strong>PKGBUILD</strong></p><div class="codebox"><pre><code># Maintainer (Arch): Antonio Rojas &lt;arojas@archlinux.org&gt;
# Contributor (Arch): Sergey Khorev &lt;sergey.khorev@gmail.com&gt;
# Maintainer: Tobias Dausend &lt;throgh@hyperbola.info&gt;

pkgname=fricas
pkgver=1.3.8
_debver=$pkgver
_debrel=6
pkgrel=1
pkgdesc=&quot;An advanced computer algebra system&quot;
arch=(&#039;i686&#039; &#039;x86_64&#039;)
url=&#039;https://fricas.github.io&#039;
license=(&#039;Modified-BSD&#039;)
depends=(&#039;gawk&#039; &#039;glibc&#039; &#039;libx11&#039; &#039;libxpm&#039; &#039;sh&#039;)
makedepends=(&#039;sbcl-legacy&#039; &#039;quilt&#039;)
options=(!strip)
source=(&quot;$pkgname-$pkgver.tar.bz2::https://deb.debian.org/debian/pool/main/f/fricas/fricas_$pkgver.orig.tar.bz2&quot;
        &quot;https://deb.debian.org/debian/pool/main/f/fricas/fricas_$_debver-$_debrel.debian.tar.xz&quot;)
sha512sums=(&#039;330554f9dc36b47451195e3dee88fe26a80ab2bf9b6750d651cd53c5ba16b9c9736176936c7c69e699685be25aa62b6a099ed7340913e946a4f5e53579835dbb&#039;
            &#039;6f34cb205fb13f7018a5c1bf4d278f1fe331e5de41f713180cb953a36bf75455fc55308c3a39d2e4104f4d8f167dcdff8f7012b6d13f22abe3511013161d58c8&#039;)

prepare() {
  cd $pkgname-$pkgver
  if [[ ${pkgver%.*} = ${_debver%.*} ]]; then
    # Debian patches
    export QUILT_PATCHES=debian/patches
    export QUILT_REFRESH_ARGS=&#039;-p ab --no-timestamps --no-index&#039;
    export QUILT_DIFF_ARGS=&#039;--no-timestamps&#039;

    mv &quot;$srcdir&quot;/debian .

    # Doesn&#039;t apply
    rm -v debian/patches/package-names-and-ansi-pathname || true

    quilt push -av
  fi
}

build() {
  cd $pkgname-$pkgver
  ./configure \
    --prefix=/usr \
    --with-lisp=&#039;sbcl \
    --control-stack-size 512 \
    --dynamic-space-size 6000&#039;
  make
}

package() {
  cd $pkgname-$pkgver
  make DESTDIR=&quot;$pkgdir&quot; install
  install -Dm644 license/LICENSE.AXIOM -t &quot;$pkgdir&quot;/usr/share/licenses/$pkgname
}</code></pre></div>]]></content>
			<author>
				<name><![CDATA[throgh]]></name>
				<uri>https://forums.hyperbola.info/profile.php?id=347</uri>
			</author>
			<updated>2025-03-03T23:12:51Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=8581#p8581</id>
		</entry>
</feed>
