meson/PKGBUILD: we no longer depend directly on fontconfig/freetype

This commit is contained in:
Daniel Eklöf 2019-12-01 15:42:28 +01:00
parent a38d1d6928
commit ba56379055
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
2 changed files with 2 additions and 8 deletions

View file

@ -32,11 +32,7 @@ check() {
package_foot() {
pkgdesc="A wayland native terminal emulator"
depends=(
'libxkbcommon'
'wayland'
'freetype2' 'fontconfig' 'pixman'
'tllist' 'fcft')
depends=('libxkbcommon' 'wayland' 'pixman' 'tllist' 'fcft')
optdepends=('foot-terminfo: terminfo for foot')
DESTDIR="${pkgdir}/" ninja install

View file

@ -19,8 +19,6 @@ cc = meson.get_compiler('c')
math = cc.find_library('m')
threads = dependency('threads')
freetype = dependency('freetype2')
fontconfig = dependency('fontconfig')
pixman = dependency('pixman-1')
wayland_protocols = dependency('wayland-protocols')
wayland_client = dependency('wayland-client')
@ -100,7 +98,7 @@ executable(
'vt.c', 'vt.h',
'wayland.c', 'wayland.h',
wl_proto_src + wl_proto_headers, version,
dependencies: [threads, math, freetype, fontconfig, pixman, wayland_client, wayland_cursor, xkb,
dependencies: [threads, math, pixman, wayland_client, wayland_cursor, xkb,
tllist, fcft],
install: true)