wok view ncursesw-dev/receipt @ rev 25817

Update kernel config for support mmc tablet
author Stanislas Leduc <shann@slitaz.org>
date Mon Mar 03 12:26:15 2025 +0100 (3 months ago)
parents c676f3e47eb1
children
line source
1 # SliTaz package receipt.
3 PACKAGE="ncursesw-dev"
4 VERSION="6.3"
5 CATEGORY="development"
6 SHORT_DESC="Development files for the ncursesw library."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://invisible-island.net/ncurses/"
11 DEPENDS="ncursesw"
12 WANTED="ncursesw"
14 HOST_ARCH="i486 arm"
16 # Rules to gen a SliTaz package suitable for Tazpkg.
17 genpkg_rules()
18 {
19 mkdir -p $fs/lib
20 mkdir -p $fs/usr/bin
21 mkdir -p $fs/usr/lib
23 cp -a $install/lib/*.a $fs/lib
24 # Include files are from the same source than ncurses-dev and work
25 # nicely for both.
26 cp -a $install/usr/include $fs/usr
27 cp $install/usr/bin/ncursesw6-config $fs/usr/bin
28 cp -a $install/usr/share/pkgconfig $fs/usr/lib
29 }