blob: e4cfafca0a70d3dcb38df3f2d86a0495d2aca2dd (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# Maintainer: Robert Manner <rmanni@gmail.com>
pkgname=widgie-git
pkgver=0.2.1.1.ge72fbed
pkgrel=1
pkgdesc="A lightweight widget library for applications which do not need a splashscreen."
arch=('x86_64' 'aarch64')
url="https://gitlab.com/manner/widgie"
license=('GPL3')
conflicts=('widgie')
provides=('widgie')
depends=()
optdepends=("ttf-nerd-fonts-symbols: (or a nerd font) for icon support")
makedepends=(wayland-protocols wayland libxkbcommon freetype2 libxkbcommon-x11 libxcb xcb-util-image xorgproto)
source=("git+https://gitlab.com/manner/widgie")
sha256sums=(SKIP)
options=('staticlibs')
_builddir="widgie"
_makeflags="FEATURE_WAYLAND=shared FEATURE_X11=shared PREFIX=/usr"
pkgver() {
cd "$_builddir"
git describe --tags | sed -e 's,-,.,g'
}
build() {
cd "$_builddir"
make -j$(nproc) $_makeflags
}
check() {
cd "$_builddir"
make $_makeflags check
}
package() {
cd "$_builddir"
make $_makeflags DESTDIR="$pkgdir" install
}
|