forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Package-Manager: portage-2.3.0
- Loading branch information
Showing
2 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST meson-0.33.0.tar.gz 482221 SHA256 2417fd27cbb1e9b1006fe9e5a1f3896285d4c925ffffdf9478638b5fe3ea7fc5 SHA512 de4bdc40574dfbbc5a29861c32984dc1c97d28992e849c32f1ec0e314d3c69861768583c29eea2b9708ec6b734759d7eac60a53015fd321e29f1e9b1dbbffc22 WHIRLPOOL f12522765dcdf035f873625c3f8dca3d5800e7f12907ac80e65b76d6f7dd54469cd91060d5b89e16b1ca088c94808901706aa98a1d53ff65429bf1b733246dcf | ||
DIST meson-0.34.0.tar.gz 497306 SHA256 985c5500da554d0d60ff25906ac835d88fb8ab1d7c596184db3b8320f2cebc36 SHA512 472265e7a37b9b2c4eab5d241be7aafbb49aa6bffc2b2f61f69e5d4b0c0e0705630fc7d2b4a2f581751488475ec801ec96853c4530934d9b63566d1b73dce4a1 WHIRLPOOL 9920f50dfb1b10b5ed90530e38b7e79518719946f6eeeade799aa87f0e6f4641c7ecf71a20a665ad6ae1171a1ff143a2b209ccfc5658239f81c7fde7bd5d7f89 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=6 | ||
PYTHON_COMPAT=( python3_{3,4,5} ) | ||
|
||
inherit distutils-r1 | ||
|
||
DESCRIPTION="Open source build system" | ||
HOMEPAGE="http://mesonbuild.com/" | ||
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" | ||
|
||
LICENSE="Apache-2.0" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~x86" | ||
IUSE="" | ||
|
||
DEPEND="${PYTHON_DEPS} | ||
dev-util/ninja | ||
" | ||
RDEPEND="${DEPEND}" | ||
|
||
DOCS=( authors.txt contributing.txt ) | ||
|
||
src_install() { | ||
distutils-r1_src_install | ||
for i in mesonconf mesonintrospect meson wraptool; do | ||
dosym "${i}.py" "/usr/bin/${i}" | ||
done | ||
} |