Magellan Linux

Contents of /branches/R11-unstable/core/lzo/lzo-2.10-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 32143 - (show annotations) (download)
Mon Apr 29 11:44:00 2019 UTC (5 years ago) by niro
File size: 627 byte(s)
-release branches/R11-unstable
1 # $Id$
2
3 PNAME="lzo"
4 PVER="2.10"
5 PBUILD="r1"
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
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}-' | highesttarball 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 }