diff options
author | Danny Rawlins <monster.romster@gmail.com> | 2013-03-07 22:19:20 +1100 |
---|---|---|
committer | Danny Rawlins <monster.romster@gmail.com> | 2013-03-07 22:20:15 +1100 |
commit | 789749429703121971bca8ab917a62677e758ae1 (patch) | |
tree | b1de1dab55cbcc2757307048d43558668c71a641 /libyaml/Pkgfile | |
parent | 5038eea8e9ef537ceaba7dbea80e7da1879b446d (diff) | |
download | opt-789749429703121971bca8ab917a62677e758ae1.tar.gz opt-789749429703121971bca8ab917a62677e758ae1.tar.xz |
libyaml: initial import romster -> opt
Diffstat (limited to 'libyaml/Pkgfile')
-rw-r--r-- | libyaml/Pkgfile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/libyaml/Pkgfile b/libyaml/Pkgfile new file mode 100644 index 000000000..7d46c47ed --- /dev/null +++ b/libyaml/Pkgfile @@ -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 +} |