mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-16 22:05:21 -05:00
meson/PKGBUILD: we no longer depend directly on fontconfig/freetype
This commit is contained in:
parent
a38d1d6928
commit
ba56379055
2 changed files with 2 additions and 8 deletions
6
PKGBUILD
6
PKGBUILD
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue