Magellan Linux

Annotation of /smage/trunk/core/lzo/lzo-2.10-r2.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 10255 - (hide annotations) (download)
Thu Aug 17 09:58:29 2017 UTC (6 years, 8 months ago) by niro
File size: 634 byte(s)
auto added: ver bump to 2.10-r2
1 niro 10255 # $Id$
2    
3     PNAME="lzo"
4     PVER="2.10"
5     PBUILD="r2"
6    
7     PCAT="dev-libs"
8    
9     DESCRIPTION="lzo compression library."
10     HOMEPAGE="http://www.oberhumer.com/opensource/lzo/"
11    
12     DEPEND=">= virtual/glibc"
13     SDEPEND=">= dev-lang/nasm-2"
14    
15     SRCFILE="${PNAME}-${PVER}.tar.gz"
16     SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
17    
18     sminclude mbuild alx-split
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     }