blob: 4ae6b304abf0138023addd1548df11b141837fa9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Description: Une bibliothèque JSON
# URL: http://lloyd.github.com/yajl/
# Maintainer: Dave Reisner <d@falconindy.com>
# Packager: fanch
# Depends on: cmake
name=yajl
version=2.0.5
release=1
source=( )
build() {
git clone git://github.com/lloyd/$name
cd $name
cmake -DCMAKE_INSTALL_PREFIX=/usr .
make
make DESTDIR=$PKG install
install -Dm644 COPYING $PKG/usr/share/licenses/$name/LICENSE
}
|