25 lines
575 B
Bash
25 lines
575 B
Bash
|
# Template file for 'curlpp'
|
||
|
pkgname=curlpp
|
||
|
version=0.7.3
|
||
|
revision=1
|
||
|
build_style=gnu-configure
|
||
|
hostmakedepends="automake libtool"
|
||
|
makedepends="libcurl-devel boost-devel"
|
||
|
short_desc="C++ wrapper for libcURL"
|
||
|
maintainer="Asaf Ohayon <asaf@sysbind.co.il>"
|
||
|
license="MIT"
|
||
|
homepage="http://www.curlpp.org/"
|
||
|
distfiles="https://github.com/jpbarrette/curlpp/archive/v${version}.tar.gz"
|
||
|
checksum=b72093f221a9e2d0f7ce0bd0f846587835e01607a7bb0f106ff4317a8c30a81c
|
||
|
|
||
|
CPPFLAGS=" -Wno-error=unused-function -O2 -pipe"
|
||
|
|
||
|
pre_configure() {
|
||
|
./autogen.sh
|
||
|
}
|
||
|
|
||
|
post_install() {
|
||
|
vlicense COPYING
|
||
|
}
|
||
|
|