Magellan Linux

Contents of /trunk/extras/clucene/clucene-2.3.3.4-r2.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 11105 - (show annotations) (download)
Fri Feb 17 11:11:33 2012 UTC (12 years, 4 months ago) by niro
File size: 701 byte(s)
-fixed missing includes
1 # $Id$
2
3 PNAME="clucene"
4 PVER="2.3.3.4"
5 PBUILD="r2"
6
7 PCAT="dev-cpp"
8
9 DESCRIPTION="CLucene is a high-performance, scalable, cross platform, full-featured, open-source indexing and searching API."
10 HOMEPAGE="http://clucene.sourceforge.net/"
11
12 DEPEND=""
13
14 SRCFILE="${PNAME}-core-${PVER}.tar.gz"
15 SRCDIR="${BUILDDIR}/${PNAME}-core-${PVER}"
16
17 sminclude cmake
18
19 SRC_URI=(
20 sourceforge://${PNAME}/${SRCFILE}
21 mirror://${PNAME}/${SRCFILE}
22 mirror://${PNAME}/${PNAME}-${PVER}-pkgconfig-sys-includes.patch
23 )
24
25 UP2DATE="updatecmd_sourceforge ${PNAME} ${PNAME}-core-stable"
26
27 src_prepare()
28 {
29 munpack ${SRCFILE} || die
30 cd ${SRCDIR}
31
32 # fix missing includes
33 mpatch ${PNAME}-${PVER}-pkgconfig-sys-includes.patch || die
34 }