wok view ncursesw-dev/receipt @ rev 25855
ncursesw-dev: pkgconfig-path modified
author | Hans-G?nter Theisgen |
---|---|
date | Wed Jul 23 08:53:04 2025 +0100 (7 days ago) |
parents | b381c3e7ee04 |
children |
line source
1 # SliTaz package receipt.
3 PACKAGE="ncursesw-dev"
4 VERSION="6.4"
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/lib/pkgconfig $fs/usr/lib
29 }