mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-12 05:34:01 -04:00
PKGBUILD/meson: add version requirements to tllist+fcft
This commit is contained in:
parent
a041b334af
commit
1307f61da1
2 changed files with 4 additions and 4 deletions
4
PKGBUILD
4
PKGBUILD
|
|
@ -4,7 +4,8 @@ pkgrel=1
|
||||||
arch=('x86_64')
|
arch=('x86_64')
|
||||||
url=https://codeberg.org/dnkl/foot
|
url=https://codeberg.org/dnkl/foot
|
||||||
license=(mit)
|
license=(mit)
|
||||||
makedepends=('meson' 'ninja' 'scdoc' 'python')
|
makedepends=('meson' 'ninja' 'scdoc' 'python' 'ncurses')
|
||||||
|
depends=('libxkbcommon' 'wayland' 'pixman' 'tllist>=1.0.0' 'fcft>=0.1.0')
|
||||||
source=()
|
source=()
|
||||||
|
|
||||||
pkgver() {
|
pkgver() {
|
||||||
|
|
@ -32,7 +33,6 @@ check() {
|
||||||
|
|
||||||
package_foot() {
|
package_foot() {
|
||||||
pkgdesc="A wayland native terminal emulator"
|
pkgdesc="A wayland native terminal emulator"
|
||||||
depends=('libxkbcommon' 'wayland' 'pixman' 'tllist' 'fcft')
|
|
||||||
optdepends=('foot-terminfo: terminfo for foot')
|
optdepends=('foot-terminfo: terminfo for foot')
|
||||||
|
|
||||||
DESTDIR="${pkgdir}/" ninja install
|
DESTDIR="${pkgdir}/" ninja install
|
||||||
|
|
|
||||||
|
|
@ -25,8 +25,8 @@ wayland_client = dependency('wayland-client')
|
||||||
wayland_cursor = dependency('wayland-cursor')
|
wayland_cursor = dependency('wayland-cursor')
|
||||||
xkb = dependency('xkbcommon')
|
xkb = dependency('xkbcommon')
|
||||||
|
|
||||||
tllist = dependency('tllist', fallback: ['tllist', 'tllist'])
|
tllist = dependency('tllist', version: '>=1.0.0', fallback: ['tllist', 'tllist'])
|
||||||
fcft = dependency('fcft', fallback: ['fcft', 'fcft'])
|
fcft = dependency('fcft', version: '>=0.1.0', fallback: ['fcft', 'fcft'])
|
||||||
|
|
||||||
wayland_protocols_datadir = wayland_protocols.get_pkgconfig_variable('pkgdatadir')
|
wayland_protocols_datadir = wayland_protocols.get_pkgconfig_variable('pkgdatadir')
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue