diff options
author | obache <obache@pkgsrc.org> | 2012-03-19 01:43:36 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2012-03-19 01:43:36 +0000 |
commit | b2f7d9bcd34273ad0b64a7ed27b80978c833cc5b (patch) | |
tree | 5b54cdb530cf1d6459e26252fa899930ac6551ea | |
parent | bfd038659a21637040a2362bc80c92c0eac6386d (diff) | |
download | pkgsrc-b2f7d9bcd34273ad0b64a7ed27b80978c833cc5b.tar.gz |
* switch MASTER_SITES to http one
* instead of manual extract command, tell archive format to extractor.
-rw-r--r-- | devel/yajl/Makefile | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/devel/yajl/Makefile b/devel/yajl/Makefile index 5cb56935a97..4a073d90da1 100644 --- a/devel/yajl/Makefile +++ b/devel/yajl/Makefile @@ -1,10 +1,10 @@ -# $NetBSD: Makefile,v 1.2 2012/03/18 23:22:03 abs Exp $ +# $NetBSD: Makefile,v 1.3 2012/03/19 01:43:36 obache Exp $ DISTNAME= 2.0.1 PKGNAME= yajl-${DISTNAME} PKGREVISION= 1 CATEGORIES= devel -MASTER_SITES= https://github.com/lloyd/yajl/tarball/ +MASTER_SITES= http://nodeload.github.com/lloyd/yajl/tarball/ DIST_SUBDIR= yajl EXTRACT_SUFX= @@ -13,18 +13,15 @@ HOMEPAGE= http://lloyd.github.com/yajl/ COMMENT= Small JSON library written in ANSI C LICENSE= modified-bsd -EXTRACT_CMD= ${TAR} -xzf ${DISTDIR}/${DIST_SUBDIR}/${DISTNAME}${EXTRACT_SUFX} -# Force using "curl" for fetching the distribution file. It is only available -# over HTTPS and "curl" is the only fetch program which always supports HTTPS. -FETCH_USING= curl - WRKSRC= ${WRKDIR}/lloyd-yajl-f4b2b1a PKG_DESTDIR_SUPPORT= user-destdir USE_LANGUAGES= c USE_LIBTOOL= yes -USE_TOOLS+= tar +USE_TOOLS+= tar gzcat USE_CMAKE= yes +EXTRACT_OPTS= -c gzip -f tar + .include "../../mk/bsd.pkg.mk" |