diff options
Diffstat (limited to 'community/yaml-cpp/PKGBUILD')
-rw-r--r-- | community/yaml-cpp/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/community/yaml-cpp/PKGBUILD b/community/yaml-cpp/PKGBUILD new file mode 100644 index 000000000..c2fc7add7 --- /dev/null +++ b/community/yaml-cpp/PKGBUILD @@ -0,0 +1,26 @@ +# $Id: PKGBUILD 89824 2013-05-02 16:13:14Z svenstaro $ +# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com> +# Contributor: Markus Martin <markus@archwyrm.net> +pkgname=yaml-cpp +pkgver=0.5.1 +pkgrel=1 +pkgdesc="YAML parser and emitter in C++, written around the YAML 1.2 spec" +url="http://code.google.com/p/yaml-cpp/" +arch=('i686' 'x86_64') +license=('MIT') +makedepends=('cmake' 'boost') +source=(http://yaml-cpp.googlecode.com/files/$pkgname-$pkgver.tar.gz) +md5sums=('0fa47a5ed8fedefab766592785c85ee7') + +build() { + cd $srcdir/$pkgname-$pkgver + + cmake . -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_SHARED_LIBS=ON + make +} + +package() { + cd $srcdir/$pkgname-$pkgver + + make DESTDIR=$pkgdir install +} |