diff options
author | Fabian Affolter <fabian@affolter-engineering.ch> | 2011-09-08 21:11:59 +0000 |
---|---|---|
committer | William Pitcock <nenolod@dereferenced.org> | 2011-12-03 14:49:17 -0600 |
commit | 22b4d3e0fe7cd9169840486bbc9692221083bd9d (patch) | |
tree | 726ec75734a9eaf95237aa92c146573f4fc6fc5a /testing | |
parent | 758d4a8f8c3cb6aeec8216076dfc2d9938510407 (diff) | |
download | aports-22b4d3e0fe7cd9169840486bbc9692221083bd9d.tar.bz2 aports-22b4d3e0fe7cd9169840486bbc9692221083bd9d.tar.xz |
Initial APKBUILD for libyaml
Package description:
YAML is a data serialization format designed for human readability and
interaction with scripting languages. LibYAML is a YAML parser and
emitter written in C.
Diffstat (limited to 'testing')
-rw-r--r-- | testing/libyaml/APKBUILD | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/testing/libyaml/APKBUILD b/testing/libyaml/APKBUILD new file mode 100644 index 000000000..4584087c8 --- /dev/null +++ b/testing/libyaml/APKBUILD @@ -0,0 +1,46 @@ +# Contributor: Fabian Affolter <fabian@affolter-engineering.ch> +# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch> +pkgname=libyaml +pkgver=0.1.4 +pkgrel=0 +pkgdesc="Yaml parser and emitter written in C" +url="http://pyyaml.org/" +arch="all" +license=MIT"" +depends="" +depends_dev="" +makedepends="" +install="" +subpackages="$pkgname-dev" +source="http://pyyaml.org/download/libyaml/yaml-$pkgver.tar.gz" +_builddir="$srcdir"/yaml-$pkgver + +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + --localstatedir=/var \ + || return 1 + make || return 1 + make check || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 + rm -f "$pkgdir"/usr/lib/*.la +} + +md5sums="36c852831d02cf90508c29852361d01b yaml-0.1.4.tar.gz" |