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 41 42 43 44 45 46 47 48 49 50
|
CAIRO=enabled # disabled|enabled
PNG_BACKEND=libpng # none|libpng
SVG_BACKEND=librsvg # none|librsvg|nanosvg (librsvg force-enables cairo, nanosvg is bundled)
pkgname=fuzzel
pkgver=1.12.0
pkgrel=1
pkgdesc="Simplistic application launcher for wayland"
arch=('x86_64' 'aarch64')
url=https://codeberg.org/dnkl/fuzzel
license=(mit)
makedepends=('meson' 'ninja' 'scdoc' 'wayland-protocols' 'tllist>=1.0.1')
depends=('libxkbcommon' 'wayland' 'pixman' 'nanosvg' 'fcft>=3.0.0' 'fcft<4.0.0')
source=()
changelog=CHANGELOG.md
if [[ ${PNG_BACKEND} == libpng ]]; then
depends+=( 'libpng' )
fi
if [[ ${SVG_BACKEND} == librsvg ]]; then
depends+=( 'librsvg' )
CAIRO=enabled
fi
if [[ ${CAIRO} == enabled ]]; then
depends+=( 'cairo' )
fi
pkgver() {
cd ../.git &> /dev/null && git describe --tags --long | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g' ||
head -3 ../meson.build | grep version | cut -d "'" -f 2
}
build() {
meson \
--prefix=/usr \
--buildtype=release \
--wrap-mode=nofallback \
-Denable-cairo=${CAIRO} \
-Dpng-backend=${PNG_BACKEND} \
-Dsvg-backend=${SVG_BACKEND} \
-Dsystem-nanosvg=enabled \
..
ninja
}
package() {
DESTDIR="${pkgdir}/" ninja install
}
|