Magellan Linux

Contents of /smage/trunk/core/lzo/lzo-2.10-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 9359 - (show annotations) (download)
Wed Mar 29 13:06:59 2017 UTC (7 years, 1 month ago) by niro
File size: 634 byte(s)
auto added: ver bump to 2.10-r1
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 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 }