Magellan Linux

Contents of /branches/R11-stable/extras/flac/flac-1.3.1-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 24251 - (show annotations) (download)
Fri Feb 20 09:34:34 2015 UTC (9 years, 2 months ago) by niro
File size: 767 byte(s)
-release branches/R11-stable
1 # $Id$
2
3 PNAME="flac"
4 PVER="1.3.1"
5 PBUILD="r1"
6
7 PCAT="media-libs"
8
9 DESCRIPTION="FLAC - Free Lossless Audio Codec."
10 HOMEPAGE="http://flac.sourceforge.net/"
11
12 DEPEND=">= virtual/glibc
13 >= media-libs/libogg-1.3
14 >= sys-libs/libstdc++-4.8"
15
16 SDEPEND=">= dev-lang/nasm-2
17 >= sys-apps/gawk-3"
18
19 SRCFILE="${PNAME}-${PVER}.tar.xz"
20 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
21
22 sminclude multilib
23 msetfeature "!check"
24
25 SRC_URI=(
26 http://downloads.xiph.org/releases/${PNAME}/${SRCFILE}
27 mirror://${PNAME}/${SRCFILE}
28 )
29
30 UP2DATE="updatecmd http://downloads.xiph.org/releases/${PNAME} | highesttarball xz"
31
32 src_compile()
33 {
34 mconfigure \
35 --disable-static \
36 --disable-rpath \
37 --with-pic \
38 --enable-ogg \
39 --disable-xmms-plugin \
40 --disable-thorough-tests \
41 || die
42
43 mmake || die
44 }