1
0
forked from ports/opt

libyaml: initial import romster -> opt

This commit is contained in:
Danny Rawlins 2013-03-07 22:19:20 +11:00
parent 5038eea8e9
commit 7897494297
3 changed files with 29 additions and 0 deletions

11
libyaml/.footprint Normal file
View File

@ -0,0 +1,11 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/include/
-rw-r--r-- root/root usr/include/yaml.h
drwxr-xr-x root/root usr/lib/
lrwxrwxrwx root/root usr/lib/libyaml-0.so.2 -> libyaml-0.so.2.0.2
-rwxr-xr-x root/root usr/lib/libyaml-0.so.2.0.2
-rw-r--r-- root/root usr/lib/libyaml.a
-rwxr-xr-x root/root usr/lib/libyaml.la
lrwxrwxrwx root/root usr/lib/libyaml.so -> libyaml-0.so.2.0.2
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/yaml-0.1.pc

1
libyaml/.md5sum Normal file
View File

@ -0,0 +1 @@
36c852831d02cf90508c29852361d01b yaml-0.1.4.tar.gz

17
libyaml/Pkgfile Normal file
View File

@ -0,0 +1,17 @@
# Description: A YAML parser and emitter library.
# URL: http://pyyaml.org/wiki/LibYAML
# Maintainer: Danny Rawlins, monster dot romster at gmail dot com
# Packager: Mark Rosenstand, mark at borkware dot net
name=libyaml
version=0.1.4
release=1
source=(http://pyyaml.org/download/$name/yaml-$version.tar.gz)
build() {
cd yaml-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}