Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions dev-libs/jansson/Manifest
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
DIST jansson-2.12.tar.gz 489154 BLAKE2B cf6bc6d03daba921ec5e033bf57ff0055741cc935adb14d5d4a5f04056fa93c292bf88367db071ef7bb32fbc5d2d6f5f2ce658815a17939bd38ed5c0676ad091 SHA512 e40bdafdfa1fa663f71e00c06d7bfc98cff4ed3581a147894e5272e50fa5f9b9a7af6aaca41ff423a2ddd2554a192b36efcc32f6a3c98c727e9f819b955357cb
DIST jansson-2.14.1-ed5cae4.tar.gz 193149 BLAKE2B 4e6ce10d799deba7a0b40e2f326e96e44291cb34affa1d7e58e29c7b01c994df487572379b9b46221537fb848e935a9d43c3a61d4138ddbcd64e1786367707d2 SHA512 561978fd2d008672a236ab3afbb3d90ff2a9b2b759fed4ea961d92156961ed48f3804f2f9bb8b76a6aa4b729faa6fe6a205a1d15abbc1ec96e22c9a115bbb7b9
35 changes: 35 additions & 0 deletions dev-libs/jansson/jansson-2.14.1.ebuild
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Distributed under the terms of the GNU General Public License v2
# Autogen by MARK Devkit

EAPI=7
inherit autotools

DESCRIPTION="C library for encoding, decoding and manipulating JSON data"
HOMEPAGE="http://www.digip.org/jansson/"
SRC_URI="https://api.github.com/repos/akheron/jansson/tarball/v2.14.1 -> jansson-2.14.1-ed5cae4.tar.gz"
LICENSE="NOASSERTION"
SLOT="0"
KEYWORDS="*"
IUSE="static-libs"

post_src_unpack() {
mv akheron-jansson-* ${S}
}


src_prepare() {
default
eautoreconf
}
src_configure() {
ECONF_SOURCE="${S}" econf \
$(use_enable static-libs static)
}
src_install() {
default
find "${D}" -name '*.la' -delete || die
}



# vim: filetype=ebuild