wok-next diff meson/receipt @ rev 20697

tor: add DEPENDS
author Erkan Yilmaz <erkan@slitaz.org>
date Wed May 23 14:42:41 2018 +0000 (2018-05-23)
parents
children d3707642a563
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/meson/receipt	Wed May 23 14:42:41 2018 +0000
     1.3 @@ -0,0 +1,27 @@
     1.4 +# SliTaz package receipt v2.
     1.5 +
     1.6 +PACKAGE="meson"
     1.7 +VERSION="0.44.0"
     1.8 +CATEGORY="development"
     1.9 +SHORT_DESC="A high performance build system"
    1.10 +MAINTAINER="al.bobylev@gmail.com"
    1.11 +LICENSE="Apache"
    1.12 +WEB_SITE="http://mesonbuild.com/"
    1.13 +LFS="http://www.linuxfromscratch.org/lfs/view/stable/chapter06/meson.html"
    1.14 +
    1.15 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.16 +WGET_URL="https://github.com/mesonbuild/meson/releases/download/$VERSION/$TARBALL"
    1.17 +
    1.18 +BUILD_DEPENDS="python3"
    1.19 +
    1.20 +compile_rules() {
    1.21 +	python3 setup.py install --root=$install --optimize=0 || return 1
    1.22 +
    1.23 +	install -m755 $stuff/meson-wrapper $install/usr/bin/
    1.24 +}
    1.25 +
    1.26 +genpkg_rules() {
    1.27 +	copy @std
    1.28 +	DEPENDS="python3"
    1.29 +	TAGS="LFS"
    1.30 +}