From f0a252082bc6e96fdf5155291afbea6edf3d4e33 Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Thu, 25 Oct 2012 19:05:58 +0000 Subject: main/yaml: moved from testing --- main/yaml/APKBUILD | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 main/yaml/APKBUILD (limited to 'main/yaml') diff --git a/main/yaml/APKBUILD b/main/yaml/APKBUILD new file mode 100644 index 000000000..f93c31ccf --- /dev/null +++ b/main/yaml/APKBUILD @@ -0,0 +1,44 @@ +# Contributor: Natanael Copa +# Maintainer: Natanael Copa +pkgname=yaml +pkgver=0.1.4 +pkgrel=0 +pkgdesc="YAML 1.1 parser and emitter written in C" +url="http://pyyaml.org/wiki/LibYAML" +arch="all" +license="MIT" +depends="" +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 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 + rm -f "$pkgdir"/usr/lib/*.la +} + +md5sums="36c852831d02cf90508c29852361d01b yaml-0.1.4.tar.gz" -- cgit v1.2.3