summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 9e863c39c6342000fea2f55c526648b7b0575ee5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Maintainer: Juanjo Gutierrez <juanjo at gutierrezdequevedo dot com>
pkgname=lunasvg
pkgver=3.2.0
pkgrel=1
pkgdesc="standalone SVG rendering library in C++ "
arch=('x86_64' 'aarch64')
url="https://github.com/sammycage/lunasvg"
license=('MIT')
makedepends=('cmake')
source=("$url/archive/refs/tags/v$pkgver.tar.gz")
sha256sums=('073629cf858bceff6fe938370d141ac7c0d21ce40acd4ffe1d56109b84d16e0d')

build() {
    cd "$pkgname-$pkgver"
    rm -fr build
    rm -fr plutovg
    git clone git@github.com:sammycage/plutovg.git
    cmake -B build .
    cmake --build build
}

package() {
    cd "$pkgname-$pkgver/build"
    make DESTDIR="$pkgdir/" install
}