Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 14132 - (hide annotations) (download)
Fri Jul 3 11:40:28 2020 UTC (3 years, 10 months ago) by niro
File size: 634 byte(s)
auto added: ver bump to 2.10-r3
1 niro 14132 # $Id$
2    
3     PNAME="lzo"
4     PVER="2.10"
5     PBUILD="r3"
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     }