blob: 2d9c82ad4fbe904d2e24f65fbd515d831d4c50ce (
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
|
# Maintainer: Robert Manner <rmanni@gmail.com>
pkgname=widgie
pkgver=0.3.4
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-git')
depends=()
optdepends=("ttf-dejavu-nerd: (or a nerd font) for icon support")
makedepends=(wayland-protocols wayland libxkbcommon freetype2 libxkbcommon-x11 libxcb xcb-util-image xorgproto)
source=("https://gitlab.com/manner/widgie/-/archive/$pkgver/widgie-$pkgver.tar.gz")
options=('staticlibs')
sha256sums=('f02c99670d44f9cf15b3cecaeca5c654690caea73ce2ba89defac9853729d63e')
_builddir="$pkgname-$pkgver"
build() {
cd "$_builddir"
./configure --prefix=/usr --enable-release
make -j$(nproc)
}
check() {
cd "$_builddir"
make check
}
package() {
cd "$_builddir"
make DESTDIR="$pkgdir" install
}
|