Magellan Linux

Annotation of /branches/magellan-next/core/lzo/lzo-2.06-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 8938 - (hide annotations) (download)
Wed Aug 24 17:44:19 2011 UTC (12 years, 9 months ago) by niro
File size: 614 byte(s)
auto added: ver bump to 2.06-r1
1 niro 8938 # $Id$
2    
3     PNAME="lzo"
4     PVER="2.06"
5     PBUILD="r1"
6    
7     PCATEGORIE="dev-libs"
8    
9     DESCRIPTION="lzo compression library."
10     HOMEPAGE="http://www.oberhumer.com/opensource/lzo/"
11    
12     DEPEND=""
13     SDEPEND=">= dev-lang/nasm-2"
14    
15     SRCFILE="${PNAME}-${PVER}.tar.gz"
16     SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
17    
18     sminclude mbuild
19    
20     SRC_URI=(
21     http://www.oberhumer.com/opensource/${PNAME}/download/${SRCFILE}
22     mirror://${PNAME}/${SRCFILE}
23     )
24    
25     UP2DATE="updatecmd http://www.oberhumer.com/opensource/lzo/download/ | grep '/${PNAME}-' | lasttarball gz"
26    
27     src_compile()
28     {
29     cd ${SRCDIR}
30    
31     # we want a shared lib
32     mconfigure --enable-shared || die
33     mmake || die
34     }