From 4511fbea4deee659fa9ebfda958e6047d2c610b0 Mon Sep 17 00:00:00 2001 From: Roberto Alsina Date: Sun, 25 Jan 2026 11:20:33 -0300 Subject: [PATCH] build fixes --- .SRCINFO | 31 +++++++++++++++---------------- PKGBUILD | 7 +------ 2 files changed, 16 insertions(+), 22 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 41fece12ed24..05f58335e0f1 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,19 +1,18 @@ pkgbase = nicolino -pkgdesc = A fast, modular static site generator written in Crystal -pkgver = 0.13.0 -pkgrel = 1 -url = https://github.com/ralsina/nicolino -arch = x86_64 -arch = aarch64 -license = MIT -depends = crystal>=1.19.0 -depends = pandoc -depends = libvips -depends = libyaml -makedepends = shards -makedepends = git -optdepends = python-pygments: for code syntax highlighting -source = nicolino-0.13.0::git+https://github.com/ralsina/nicolino.git#tag=v0.13.0 -sha256sums = SKIP + pkgdesc = A fast, modular static site generator written in Crystal + pkgver = 0.13.0 + pkgrel = 2 + url = https://github.com/ralsina/nicolino + arch = x86_64 + arch = aarch64 + license = MIT + makedepends = shards + makedepends = git + depends = crystal>=1.19.0 + depends = pandoc + depends = libvips + depends = libyaml + source = nicolino-0.13.0::git+https://github.com/ralsina/nicolino.git#tag=v0.13.0 + sha256sums = SKIP pkgname = nicolino diff --git a/PKGBUILD b/PKGBUILD index 9e7b56bd0eda..d8dfd84417fb 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,14 +1,13 @@ # Maintainer: Roberto Alsina pkgname=nicolino pkgver=0.13.0 -pkgrel=1 +pkgrel=2 pkgdesc="A fast, modular static site generator written in Crystal" arch=("x86_64" "aarch64") url="https://github.com/ralsina/nicolino" license=("MIT") depends=("crystal>=1.19.0" "pandoc" "libvips" "libyaml") makedepends=("shards" "git") -optdepends=("python-pygments: for code syntax highlighting") source=("$pkgname-$pkgver::git+https://github.com/ralsina/nicolino.git#tag=v$pkgver") sha256sums=("SKIP") @@ -23,10 +22,6 @@ package() { # Install binary install -Dm755 "bin/nicolino" "$pkgdir/usr/bin/nicolino" - # Install templates and themes - mkdir -p "$pkgdir/usr/share/nicolino" - cp -r themes "$pkgdir/usr/share/nicolino/" - # Install license install -Dm644 "LICENSE.md" "$pkgdir/usr/share/licenses/$pkgname/LICENSE" }