wok annotate lua5.1-dev/receipt @ rev 24554

updated flac and flac-dev again (1.3.3 -> 1.3.4)
author Hans-G?nter Theisgen
date Fri Feb 25 11:25:23 2022 +0100 (2022-02-25)
parents fcccf4376301
children
rev   line source
pankso@13632 1 # SliTaz package receipt.
pankso@13632 2
pankso@13632 3 PACKAGE="lua5.1-dev"
Hans-G?nter@21381 4 VERSION="5.1.5"
pankso@13632 5 CATEGORY="development"
Hans-G?nter@21381 6 SHORT_DESC="Lua 5.1 development files."
pankso@13632 7 MAINTAINER="pankso@slitaz.org"
pascal@15379 8 LICENSE="MIT"
Hans-G?nter@21381 9 WEB_SITE="https://www.lua.org/"
pankso@13632 10
pascal@19742 11 DEPENDS="pkg-config lua5.1"
Hans-G?nter@21381 12 WANTED="lua5.1"
pascal@15597 13
pankso@13632 14 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@13632 15 genpkg_rules()
pankso@13632 16 {
Hans-G?nter@21381 17 mkdir -p $fs/usr/lib/pkgconfig
Hans-G?nter@21381 18 mkdir -p $fs/usr/lib/lua/5.1
Hans-G?nter@21381 19
Hans-G?nter@21381 20 cp -a $install/usr/include $fs/usr
Hans-G?nter@21381 21 cp -a $install/usr/lib/lua/5.1/liblua.a $fs/usr/lib/lua/5.1
Hans-G?nter@21381 22 ln -s liblua.a $fs/usr/lib/lua/5.1/liblua5.1.a
Hans-G?nter@21381 23 cp -a $src/etc/lua.pc $fs/usr/lib/pkgconfig/lua5.1.pc
pankso@13632 24 }