wok view ncursesw-dev/receipt @ rev 24746

ncursesw-dev: add pkg config files (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Mar 16 11:02:39 2022 +0000 (2022-03-16)
parents 4ce52a0b72fd
children 24801b09d2f7
line source
1 # SliTaz package receipt.
3 PACKAGE="ncursesw-dev"
4 VERSION="6.2"
5 CATEGORY="development"
6 SHORT_DESC="Development files for the ncursesw library."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://www.gnu.org/software/ncurses/ncurses.html"
11 DEPENDS="ncursesw pkg-config"
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 ncuses-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 }