Magellan Linux

Contents of /trunk/core/lzip/lzip-1.23-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 33368 - (show annotations) (download)
Thu Jul 13 14:28:33 2023 UTC (10 months ago) by niro
File size: 710 byte(s)
-ver bump to 1.23-r1
1 # $Id$
2
3 PNAME="lzip"
4 PVER="1.23"
5 PBUILD="r1"
6
7 PCAT="app-arch"
8
9 DESCRIPTION="A lossless file compressor based on the LZMA algorithm."
10 HOMEPAGE="https://www.nongnu.org/lzip/"
11
12 DEPEND=">= virtual/glibc
13 >= sys-libs/libstdc++-13.1"
14
15 SRCFILE="${PNAME}-${PVER}.tar.gz"
16 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
17
18 sminclude mbuild
19
20 SRC_URI=(
21 https://download.savannah.gnu.org/releases/${PNAME}/${SRCFILE}
22 mirror://${PNAME}/${SRCFILE}
23 )
24
25 UP2DATE="https://download.savannah.gnu.org/releases/${PNAME}/ | highesttarball gz"
26
27 src_compile()
28 {
29 cd ${SRCDIR}
30
31 # not using autotools
32 ./configure --prefix=/usr --host=${CHOST} \
33 "CPPFLAGS=${CPPFLAGS}" \
34 "CFLAGS=${CFLAGS}" \
35 "LDFLAGS=${LDFLAGS}" \
36 || die
37
38 mmake || die
39 }