PKGBUILDs/community/wt/PKGBUILD

66 lines
1.9 KiB
Bash
Raw Normal View History

2015-10-24 01:13:10 +00:00
# $Id$
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
# Contributor: Denis Martinez <deuns.martinez@gmail.com>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - add -fsigned-char to cflags
pkgname=wt
2016-08-08 18:16:48 +00:00
pkgver=3.3.6
_pkgver=3.3.6
2017-01-12 13:38:51 +00:00
pkgrel=6
2015-10-24 01:13:10 +00:00
pkgdesc="a C++ library and application server for developing and deploying web applications"
arch=('i686' 'x86_64')
url="http://www.webtoolkit.eu/"
license=('GPL')
depends=('boost-libs' 'libharu' 'graphicsmagick' 'pango' 'zlib')
makedepends=('boost' 'cmake' 'postgresql-libs' 'fcgi' 'sqlite' 'mysql++' 'qt4' 'doxygen' 'mesa' 'glu')
optdepends=('openssl: for SSL support in built-in webserver'
'fcgi: for FastCGI support'
'postgresql-libs: for PostgreSQL Dbo support'
'sqlite: for Sqlite Dbo support'
'mysql++: for the hangman example'
'qt4: for the Wt/Qt interopability example (wtwithqt)')
backup=('etc/wt/wt_config.xml')
2017-01-12 13:38:51 +00:00
source=(https://github.com/kdeforche/wt/archive/${_pkgver}.tar.gz wt-boost-1.63.patch)
md5sums=('a5be5f7efa93c4eae7f1d8812ff78c70'
'87a0c637d7014e764892686891393d6b')
prepare() {
cd $pkgname-$_pkgver
# Fix build with boost 1.63 https://github.com/emweb/wt/pull/102
patch -p0 -i ../wt-boost-1.63.patch
}
2015-10-24 01:13:10 +00:00
build() {
2016-11-05 04:34:02 +00:00
cd "$srcdir"/${pkgname}-${_pkgver}
2015-10-24 01:13:10 +00:00
CFLAGS+=" -fsigned-char"
CXXFLAGS+=" -fsigned-char"
[[ -d build ]] && rm -r build
mkdir -p build && cd build
cmake \
-DCONNECTOR_HTTP=ON \
-DWT_CPP_11_MODE=-std=c++11 \
2015-11-05 06:56:37 +00:00
-DCONFIGDIR=/etc \
2015-10-24 01:13:10 +00:00
-DWT_WRASTERIMAGE_IMPLEMENTATION=GraphicsMagick \
-DCMAKE_INSTALL_PREFIX=/usr \
-DWEBUSER=http \
-DWEBGROUP=http \
-DUSE_SYSTEM_SQLITE3=ON \
-DINSTALL_EXAMPLES=ON \
2015-11-04 19:07:33 +00:00
-DBUILD_EXAMPLES=ON \
2015-10-24 01:13:10 +00:00
-DINSTALL_FINDWT_CMAKE_FILE=ON \
..
# build examples again when they are compatible with boost 1.58
make
}
package() {
2016-11-05 04:34:02 +00:00
cd "$srcdir"/${pkgname}-${_pkgver}/build
2015-10-24 01:13:10 +00:00
2016-11-05 04:34:02 +00:00
make DESTDIR="$pkgdir" install
2015-10-24 01:13:10 +00:00
}