Please, update package or give me package maintenance )
![]() |
VOOZH | about |
| Git Clone URL: | https://aur.archlinux.org/dms.git (read-only, click to copy) |
|---|---|
| Package Base: | dms |
| Description: | UPnP DLNA Digital Media Server |
| Upstream URL: | https://github.com/anacrolix/dms/ |
| Keywords: | dlna upnp |
| Licenses: | BSD |
| Submitter: | bitwave |
| Maintainer: | dpvpro |
| Last Packager: | dpvpro |
| Votes: | 8 |
| Popularity: | 0.006675 |
| First Submitted: | 2015-03-03 15:55 (UTC) |
| Last Updated: | 2025-06-23 18:51 (UTC) |
Please, update package or give me package maintenance )
It's failing to build:
==> Starting build()...
# github.com/anacrolix/dms
link: golang.org/x/net/internal/socket: invalid reference to syscall.recvmsg
==> ERROR: A failure occurred in build().
Aborting...
-> error making: dms-exit status 4
-> Failed to install the following packages. Manual intervention is required:
dms - exit status 4
the following patch fixes the issue.
diff --git a/PKGBUILD b/PKGBUILD
index 5560927..ace2cc0 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -21,7 +21,7 @@ build() {
go build \
-gcflags "all=-trimpath=${PWD}" \
-asmflags "all=-trimpath=${PWD}" \
- -ldflags "-extldflags ${LDFLAGS}" \
+ -ldflags "-extldflags \"${LDFLAGS}\"" \
-buildmode=pie \
.
}
Build failed when enable mold linker:
==> Starting build()...
# github.com/anacrolix/dms
flag provided but not defined: -fuse-ld
/etc/xdg/pacman/makepkg.conf:
LTOFLAGS="-fuse-ld=mold -flto=auto -fuse-linker-plugin"
OPTIONS=(strip !docs !libtool !staticlibs !emptydirs zipman purge !debug lto)