Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Gentoo ebuild #16

Merged
merged 1 commit into from
Sep 14, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions package/gentoo/dev-libs/corrade/Manifest
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
EBUILD corrade-9999.ebuild 621 SHA256 cb3bd59a8c8a42ada26fb9d04cd0283f136395e7570a31731f71b326700d4ba1 SHA512 075339cf021185b05dbe715c94750b362ec508ec45d0c4c0d163d377d6e159f0b2c74e282b6b1f3872a55137182fb5eb87e34fef4d9c19af1b005b2ac4bcbd8a WHIRLPOOL 75eef84d4336895d5638a3b822e8975ec6a68ffe8a2686542368aa06e7b7a1df595d61323e3c9d804b43e0dd79329a4058682d9e9125dd47adb5ff4638445c4c
32 changes: 32 additions & 0 deletions package/gentoo/dev-libs/corrade/corrade-9999.ebuild
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI=5

EGIT_REPO_URI="git://github.com/mosra/corrade.git"

inherit cmake-utils git-r3

DESCRIPTION="C++11 Multiplatform plugin management and utility library"
HOMEPAGE="http://mosra.cz/blog/corrade.php"

LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

RDEPEND="
dev-util/cmake
"
DEPEND="${RDEPEND}"

src_configure() {
local mycmakeargs=(
-DCMAKE_INSTALL_PREFIX="${EPREFIX}/usr"
-DCMAKE_BUILD_TYPE=Debug \
-DBUILD_TESTS=TRUE \
-DWITH_FIND_MODULE=TRUE
)
cmake-utils_src_configure
}