wok view yajl/receipt @ rev 10479
Updated all sourced slitaz-dev-tools receipts to 1.1.2.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Wed May 25 06:05:57 2011 +0000 (2011-05-25) |
parents | e06d60ae03eb |
children | 6b1ce5d876c8 |
line source
1 # SliTaz package receipt.
3 PACKAGE="yajl"
4 VERSION="2.0.2"
5 CATEGORY="development"
6 SHORT_DESC="Yet Another JSON Library"
7 MAINTAINER="slaxemulator@gmail.com"
8 BUILD_DEPENDS="cmake doxygen git"
9 WEB_SITE="https://github.com/lloyd/yajl"
10 WGET_URL="git|git://github.com/lloyd/yajl.git"
11 BRANCH="$VERSION"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 cmake \
18 -DCMAKE_INSTALL_PREFIX=/usr \
19 .
20 make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 cp -a $_pkg/usr $fs
27 }