diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2012-10-25 19:05:58 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2012-10-25 19:05:58 +0000 |
commit | f0a252082bc6e96fdf5155291afbea6edf3d4e33 (patch) | |
tree | e44087faf6497a7f327d1f8a1547d91bd70a21a5 /main | |
parent | c70ad2c0ba31c0d83616393bda976ff92b0782d2 (diff) | |
download | aports-f0a252082bc6e96fdf5155291afbea6edf3d4e33.tar.bz2 aports-f0a252082bc6e96fdf5155291afbea6edf3d4e33.tar.xz |
main/yaml: moved from testing
Diffstat (limited to 'main')
-rw-r--r-- | main/yaml/APKBUILD | 44 |
1 files changed, 44 insertions, 0 deletions
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 <ncopa@alpinelinux.org> +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +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" |