wok view iniparser/receipt @ rev 23635

updated scummvm (2.0.0 -> 2.1.2)
author Hans-G?nter Theisgen
date Mon Apr 20 07:41:02 2020 +0100 (2020-04-20)
parents de49f29b101e
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="iniparser"
4 VERSION="4.1"
5 CATEGORY="system-tools"
6 SHORT_DESC="Free stand-alone ini file parsing library."
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://github.com/ndevilla/iniparser/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://github.com/ndevilla/$PACKAGE/archive/v$VERSION.tar.gz"
14 DEPENDS=""
15 BUILD_DEPENDS=""
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 make
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib
27 cp -a $src/*.so* $fs/usr/lib
28 }