blob: ce37d4ca1dbe9a8a771ff234555199add414dff4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=4
inherit autotools
DESCRIPTION="Lua Crypto Library"
HOMEPAGE="https://github.com/mkottman/luacrypto.git" # most active fork
SRC_URI="mirror://github/hasufell/tinkerbox/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=dev-lang/lua-5.1
dev-libs/openssl:0"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_configure() {
econf \
--htmldir=/usr/share/doc/${PF}/html
}
src_test() {
emake test
}
|