File: ctpp2.ebuild

package info (click to toggle)
ctpp2 2.8.3-15
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 2,536 kB
  • ctags: 2,545
  • sloc: cpp: 21,074; ansic: 413; makefile: 72; php: 24; perl: 20; sh: 4
file content (27 lines) | stat: -rw-r--r-- 374 bytes parent folder | download | duplicates (3)
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
inherit eutils

DESCRIPTION="CT++"
HOMEPAGE="http://ctpp.havoc.ru"

SRC_URI="http://ctpp.havoc.ru/download/${P}.tar.gz"

LICENSE="BSD"
KEYWORDS="x86"

DEPEND="dev-util/cmake"

src_compile() {
	cmake . || die
	emake || die
}

src_install() {
	dobin ctpp2c ctpp2json ctpp2vm ctpp2c ctpp2-config

	dolib.so *.so*

	insinto /usr/include/ctpp2
	doins include/*

	dodoc CHANGES
}