Package Details: openring-git r13.51c8a2e1-1

Git Clone URL: https://aur.archlinux.org/openring-git.git (read-only, click to copy)
Package Base: openring-git
Description: A webring for static site generators
Upstream URL: https://sr.ht/~sircmpwn/openring/
Licenses: GPL3
Conflicts: openring
Provides: openring
Submitter: nka
Maintainer: samhh
Last Packager: nka
Votes: 1
Popularity: 0.000057
First Submitted: 2021-05-24 16:39 (UTC)
Last Updated: 2021-12-31 10:20 (UTC)

Dependencies (2)

Required by (0)

Sources (1)

Latest Comments

samhh commented on 2021-12-31 00:03 (UTC)

This package has broken recently due to the inclusion of multiple licenses upstream. I'm unsure how this is typically handled in AUR packages, but this patch does the trick:

diff --git a/PKGBUILD b/PKGBUILD
index fd74cd1..664061e 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -28,5 +28,5 @@ build() {

 package() {
   install -Dm755 "${srcdir}/${_pkgname}/${_pkgname}" "${pkgdir}/usr/bin/${_pkgname}"
-  install -Dm644 "${srcdir}/${_pkgname}/LICENSE" "${pkgdir}/usr/share/licenses/${_pkgname}/LICENSE"
+  install -Dm644 "${srcdir}/${_pkgname}/LICENSES"/* -t "${pkgdir}/usr/share/licenses/${_pkgname}/LICENSES"
 }