30 lines
650 B
Text
30 lines
650 B
Text
# Template build for 'yajl'.
|
|
pkgname=yajl
|
|
version=2.1.0
|
|
revision=2
|
|
build_style=cmake
|
|
hostmakedepends="ruby cmake doxygen git"
|
|
short_desc="Yet Another JSON Library"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
license="ISC"
|
|
homepage="http://lloyd.github.io/yajl/"
|
|
|
|
do_fetch() {
|
|
git clone -b${version} git://github.com/lloyd/yajl.git yajl-${version}
|
|
}
|
|
|
|
post_install() {
|
|
vmkdir usr/lib
|
|
mv ${DESTDIR}/usr/share/pkgconfig ${DESTDIR}/usr/lib
|
|
}
|
|
|
|
yajl-devel_package() {
|
|
depends="yajl>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove "usr/lib/*.a"
|
|
vmove "usr/lib/*.so"
|
|
vmove usr/lib/pkgconfig
|
|
vmove usr/include
|
|
}
|
|
}
|