blob: 24c9e5ce236773be0ad4a3aeb934bac466010c31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Maintainer: Jake Leahy <jake (at) leahy (dot) dev
pkgname=slint-cpp-bin
pkgver=1.2.1
pkgrel=1
pkgdesc="Slint is a toolkit to efficiently develop fluid graphical user interfaces for any display: embedded devices and desktop applications"
arch=("x86_64")
url="https://slint-ui.com"
license=("GPL3")
source=("slint-cpp-$pkgver.tar.gz::https://github.com/slint-ui/slint/releases/download/v$pkgver/Slint-cpp-$pkgver-Linux-$CARCH.tar.gz")
sha256sums=('bc026f111d2ada05fd9201680606474c86075b18c790cce6e42391400cb963e7')
depends=("freetype2" "qt5-base")
package() {
cd Slint-cpp-$pkgver-Linux-$CARCH/
mkdir -p ${pkgdir}/usr/
cp -r . ${pkgdir}/usr/
cp ${pkgdir}/usr/include/slint/* ${pkgdir}/usr/include/
rm -rf ${pkgdir}/usr/include/slint/
}
|