wok view lua5.1-dev/receipt @ rev 23761

Up linux-cloop (4.12)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon May 04 09:05:12 2020 +0000 (2020-05-04)
parents fcccf4376301
children
line source
1 # SliTaz package receipt.
3 PACKAGE="lua5.1-dev"
4 VERSION="5.1.5"
5 CATEGORY="development"
6 SHORT_DESC="Lua 5.1 development files."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://www.lua.org/"
11 DEPENDS="pkg-config lua5.1"
12 WANTED="lua5.1"
14 # Rules to gen a SliTaz package suitable for Tazpkg.
15 genpkg_rules()
16 {
17 mkdir -p $fs/usr/lib/pkgconfig
18 mkdir -p $fs/usr/lib/lua/5.1
20 cp -a $install/usr/include $fs/usr
21 cp -a $install/usr/lib/lua/5.1/liblua.a $fs/usr/lib/lua/5.1
22 ln -s liblua.a $fs/usr/lib/lua/5.1/liblua5.1.a
23 cp -a $src/etc/lua.pc $fs/usr/lib/pkgconfig/lua5.1.pc
24 }