mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-04-06 07:15:30 -04: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() {
|
package_foot() {
|
||||||
pkgdesc="A wayland native terminal emulator"
|
pkgdesc="A wayland native terminal emulator"
|
||||||
depends=(
|
depends=('libxkbcommon' 'wayland' 'pixman' 'tllist' 'fcft')
|
||||||
'libxkbcommon'
|
|
||||||
'wayland'
|
|
||||||
'freetype2' 'fontconfig' 'pixman'
|
|
||||||
'tllist' 'fcft')
|
|
||||||
optdepends=('foot-terminfo: terminfo for foot')
|
optdepends=('foot-terminfo: terminfo for foot')
|
||||||
|
|
||||||
DESTDIR="${pkgdir}/" ninja install
|
DESTDIR="${pkgdir}/" ninja install
|
||||||
|
|
|
||||||
|
|
@ -19,8 +19,6 @@ cc = meson.get_compiler('c')
|
||||||
math = cc.find_library('m')
|
math = cc.find_library('m')
|
||||||
|
|
||||||
threads = dependency('threads')
|
threads = dependency('threads')
|
||||||
freetype = dependency('freetype2')
|
|
||||||
fontconfig = dependency('fontconfig')
|
|
||||||
pixman = dependency('pixman-1')
|
pixman = dependency('pixman-1')
|
||||||
wayland_protocols = dependency('wayland-protocols')
|
wayland_protocols = dependency('wayland-protocols')
|
||||||
wayland_client = dependency('wayland-client')
|
wayland_client = dependency('wayland-client')
|
||||||
|
|
@ -100,7 +98,7 @@ executable(
|
||||||
'vt.c', 'vt.h',
|
'vt.c', 'vt.h',
|
||||||
'wayland.c', 'wayland.h',
|
'wayland.c', 'wayland.h',
|
||||||
wl_proto_src + wl_proto_headers, version,
|
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],
|
tllist, fcft],
|
||||||
install: true)
|
install: true)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue