# Description: C++ client API for the Curl web access library # URL: http://rrette.com/textpattern/index.php?s=cURLpp # Packager: Andreas Baumann # Depends on: curl boost name=curlpp version=0.7.2 release=1 source=(http://rrette.com/files/$name/$name-0.7/$name-$version.tar.gz curlpp-0.7.2-config.patch) build() { cd $name-$version patch -p1 -i ../curlpp-0.7.2-config.patch ./configure \ --prefix=/usr \ --with-boost \ --enable-static \ --enable-shared # -i because I'm too stupid to fix example18 :-) make -i make -i install DESTDIR=$PKG # also deploy config.h cp curlpp/config.h $PKG/usr/include/curlpp/. }