Magellan Linux

Contents of /branches/magellan-next/core/xz-utils/xz-utils-5.0.0-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 7454 - (show annotations) (download)
Wed Jan 12 22:00:21 2011 UTC (13 years, 3 months ago) by niro
File size: 879 byte(s)
auto added: ver bump to 5.0.0-r1
1 # $Id$
2
3 PNAME="xz-utils"
4 PVER="5.0.0"
5 PBUILD="r1"
6
7 PCATEGORIE="app-arch"
8 STATE="unstable"
9
10 DESCRIPTION="Library and command line tools for XZ and LZMA compressed files."
11 HOMEPAGE="http://tukaani.org/xz/"
12
13 DEPEND=">= virtual/glibc"
14
15 SRCFILE="xz-${PVER}.tar.bz2"
16 SRCDIR="${BUILDDIR}/xz-${PVER}"
17
18 sminclude mbuild multilib
19
20 SRC_URI=(
21 http://tukaani.org/xz/${SRCFILE}
22 mirror://${PNAME}/${SRCFILE}
23 )
24
25 UP2DATE="updatecmd ${HOMEPAGE} | lasttarball"
26
27 src_compile()
28 {
29 mconfigure \
30 --docdir=/usr/share/doc/${PNAME}-${PVER} \
31 --enable-dynamic=yes \
32 --enable-threads \
33 --enable-nls \
34 || die
35
36 mmake || die
37 }
38
39 src_install()
40 {
41 mmake DESTDIR=${BINDIR} install || die
42 minstalldocs AUTHORS ChangeLog COPYING* NEWS README THANKS TODO || die
43 # compress all docs (some get installed but not compressed)
44 ${MLIBDIR}/compressdoc -g -9 ${BINDIR}/usr/share/doc/${PNAME}-${PVER} || die
45 }