wok view lgi/receipt @ rev 17255

mc: fix build
author Xander Ziiryanoff <psychomaniak@xakep.ru>
date Mon Oct 20 20:17:03 2014 +0200 (2014-10-20)
parents
children d915ef6e3b53
line source
1 # SliTaz package receipt.
3 PACKAGE="lgi"
4 VERSION="0.7.2"
5 CATEGORY="development"
6 SHORT_DESC="Dynamic Lua binding to GObject libraries using GObject-Introspection"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="MIT"
9 WEB_SITE="https://github.com/pavouk/lgi"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="https://github.com/pavouk/lgi/archive/$VERSION.tar.gz"
13 DEPENDS="glib gobject-introspection lua"
14 BUILD_DEPENDS="gobject-introspection-dev lua-dev wget"
15 # add "cairo-dev gtk+-dev" for `make check`
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 # fix paths
21 sed -i 's|/usr/local|/usr|g;s|5.1|5.2|g;s|51|52|g' \
22 $src/lgi/Makefile $src/lgi/core.lua $src/lgi/core.c
23 # `make check` after `make` produces error
24 make &&
25 make PREFIX=/usr DESTDIR=$install install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 cp -a $install/* $fs
32 }