Package Details: css-inline 0.20.0-1

Git Clone URL: https://aur.archlinux.org/css-inline.git (read-only, click to copy)
Package Base: css-inline
Description: High-performance library for inlining CSS into HTML 'style' attributes
Upstream URL: https://github.com/Stranger6667/css-inline
Licenses: MIT
Submitter: moreka
Maintainer: moreka
Last Packager: moreka
Votes: 1
Popularity: 0.018562
First Submitted: 2026-01-27 18:21 (UTC)
Last Updated: 2026-03-24 23:35 (UTC)

Required by (0)

Sources (1)

Latest Comments

moreka commented on 2026-03-24 23:35 (UTC)

Thanks @meadow! Updated the PKGBUILD.

meadow commented on 2026-03-23 15:10 (UTC)

Hi :)

I was able to avoid options=(!lto) by adding

CFLAGS+=' -ffat-lto-objects'

to build()

Here's a check() function too

check()
{
    cd $pkgname-rust-v$pkgver/$pkgname

    export RUSTUP_TOOLCHAIN=stable
    python tests/server.py &
    local _server_pid=$!
    cargo test --frozen --all-features
    kill $_server_pid
}