Package Details: darkmark-git 1.10.18-1

Git Clone URL: https://aur.archlinux.org/darkmark-git.git (read-only, click to copy)
Package Base: darkmark-git
Description: DarkMark: GUI for Darknet and DarkHelp
Upstream URL: https://github.com/stephanecharette/DarkMark
Licenses: GPL3
Submitter: Seed
Maintainer: Seed
Last Packager: Seed
Votes: 1
Popularity: 0.000756
First Submitted: 2025-02-28 07:31 (UTC)
Last Updated: 2025-03-18 21:24 (UTC)

Latest Comments

trougnouf commented on 2026-02-10 15:39 (UTC)

pkgname=darkmark-git
pkgver=1.11.11
pkgrel=1
pkgdesc="DarkMark: GUI for Darknet and DarkHelp"
arch=('x86_64' 'aarch64' 'i686')
url="https://github.com/stephanecharette/DarkMark"
license=('GPL3')
depends=('darkhelp' 'darknet-hankai' 'opencv' 'libx11' 'freetype2' 'libxrandr' 'libxinerama' 'libxcursor' 'file' 'poppler' 'ttf-liberation')
provides=('darkmark')
conflicts=('darkmark')
makedepends=('cmake' 'git')
source=("git+https://github.com/stephanecharette/DarkMark.git")
sha256sums=('SKIP')

pkgver() {
  cd "$srcdir/DarkMark"
  cat version.txt | cut -d '-' -f 1
}

build() {
  cd "$srcdir/DarkMark"
  mkdir -p build && cd build
  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr ..
  make -j"$(nproc)"
}

package() {
  cd "$srcdir/DarkMark/build"
  make install DESTDIR="$pkgdir"
}

trougnouf commented on 2026-01-02 13:42 (UTC)

Please change the dependency from darknet-hankai-git to darknet-hankai and make darknet-hankai-git provide darknet-hankai.

conan commented on 2025-07-03 03:06 (UTC)

This package doesn't build. You need to apply the same patch shown on comments for package darkhelp-git, but to two files here: - CM_definitions.cmake - CM_source.cmake

Both needs to remove the -Werror compiler parameter so they can be built.