Magellan Linux

Annotation of /trunk/extras/dotconf/dotconf-1.3-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 15492 - (hide annotations) (download)
Wed Jan 2 21:55:11 2013 UTC (11 years, 5 months ago) by niro
File size: 610 byte(s)
-fixed src fetch
1 niro 8758 # $Id$
2    
3     PNAME="dotconf"
4     PVER="1.3"
5     PBUILD="r1"
6    
7 niro 15489 PCAT="dev-libs"
8 niro 8758
9     DESCRIPTION="dot.conf configuration file parser."
10     HOMEPAGE="https://github.com/williamh/dotconf/"
11    
12 niro 15489 DEPEND=">= virtual/glibc"
13 niro 8760 SDEPEND=">= sys-dev/autoconf-9
14     >= sys-dev/automake-4"
15 niro 8758
16 niro 15492 SRCFILE="${PNAME}-${PVER}.tar.gz"
17     SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
18 niro 8758
19     sminclude mbuild
20    
21 niro 15492 # only use local mirror, github has changes its download mechanism
22     SRC_URI=( mirror://${PNAME}/${SRCFILE} )
23 niro 8758
24     UP2DATE="updatecmd ${HOMEPAGE} | lasttarball gz"
25    
26 niro 8760 src_prepare()
27 niro 8758 {
28 niro 8760 munpack ${SRCFILE} || die
29 niro 8759 cd ${SRCDIR}
30 niro 8760 # create missing configure script
31     mautoreconf || die
32 niro 8758 }