Magellan Linux

Contents of /branches/magellan-next/extras/libmal/libmal-0.44.1-r3.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 8748 - (show annotations) (download)
Thu Jul 28 11:37:47 2011 UTC (12 years, 9 months ago) by niro
File size: 792 byte(s)
auto added: ver bump to 0.44.1-r3
1 # $Id$
2
3 PNAME="libmal"
4 PVER="0.44.1"
5 PBUILD="r3"
6
7 PCATEGORIE="dev-libs"
8
9 DESCRIPTION="A convenience library of functions used to synchronize with a MAL server."
10 HOMEPAGE="http://www.jlogday.com/code/libmal/index.html"
11
12 DEPEND=">= net-misc/pilot-link-0.12"
13
14 SRCFILE="${PNAME}-${PVER}.tar.gz"
15 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
16
17 sminclude mbuild
18
19 SRC_URI=(
20 http://www.jlogday.com/code/${PNAME}/${SRCFILE}
21 mirror://${PNAME}/${SRCFILE}
22 )
23
24 UP2DATE="updatecmd ${HOMEPAGE} | lasttarball gz"
25
26 src_prepare()
27 {
28 munpack ${SRCFILE} || die
29 cd ${SRCDIR}
30
31 # pilot-link will not be found on multilib systems
32 # - hardcoded lib pathes in configure
33 sed -i "s:\$pilot_prefix/lib /usr/lib:\$pilot_prefix/$(mlibdir) /usr/$(mlibdir):g" configure.in || die
34 autoreconf --install --force --verbose || die
35 }