first commit
This commit is contained in:
3
src/jansson/.gitignore
vendored
Normal file
3
src/jansson/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/jansson/changes.md
Normal file
2
src/jansson/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 2.14
|
||||
First version
|
16
src/jansson/pkg.sh
Normal file
16
src/jansson/pkg.sh
Normal file
@ -0,0 +1,16 @@
|
||||
NAME="jansson"
|
||||
DESC="A library used to encode, decode, and manipulate JSON data"
|
||||
VERSION="2.14"
|
||||
FILES=("https://github.com/akheron/jansson/releases/download/v$VERSION/jansson-$VERSION.tar.bz2")
|
||||
HASHES=("3f90473d7d54ebd1cb6a2757396641df")
|
||||
DEPENDS=()
|
||||
|
||||
PACKAGE() {
|
||||
tar xf $NAME-$VERSION.tar.bz2
|
||||
cd $NAME-$VERSION
|
||||
|
||||
./configure --prefix=/usr --disable-static
|
||||
make && make DESTDIR="$ROOTDIR" install
|
||||
|
||||
cd .. && rm -rf $NAME-$VERSION
|
||||
}
|
Reference in New Issue
Block a user