void-packages/srcpkgs/webkit-gtk3/template

58 lines
1.8 KiB
Plaintext
Raw Normal View History

# Template file for 'webkit-gtk3'
pkgname=webkit-gtk3
2012-04-26 10:33:20 +02:00
version=1.8.1
2012-07-21 10:10:00 +02:00
revision=3
wrksrc=webkit-${version}
2012-07-21 10:10:00 +02:00
makedepends="perl pkg-config intltool which gperf flex jpeg-devel
libpng-devel>=1.5.10 sqlite-devel gtk+-devel gtk+3-devel
gst-plugins-base-devel libsoup-devel libxslt-devel icu-devel>=49
enchant-devel geoclue-devel gobject-introspection"
short_desc="GTK+3 port of the WebKit browser engine"
maintainer="Juan RP <xtraeme@gmail.com>"
2011-06-08 07:52:07 +02:00
homepage="http://webkitgtk.org/"
license="LGPL-2.1, Simplified BSD (2 clause)"
2012-03-28 10:11:38 +02:00
distfiles="${homepage}/releases/webkit-${version}.tar.xz"
2012-04-26 10:33:20 +02:00
checksum=9a126a76b40ca61adb1f1626e1567f976740af2332948cc5189489dbd01e3b28
long_desc="
WebKit is an open source web browser engine. WebKit is also the name of
the Mac OS X system framework version of the engine that's used by
Safari, Dashboard, Mail, and many other OS X applications. WebKit's HTML
and JavaScript code began as a branch of the KHTML and KJS libraries
from KDE.
This is the GTK3+ port of the engine."
2012-03-28 10:11:38 +02:00
disable_parallel_build=yes
subpackages="webkit-gtk webkit-gtk-devel $pkgname-devel"
2012-02-02 21:17:19 +01:00
do_configure() {
local args="--enable-video --enable-jit \
--with-font-backend=freetype --enable-introspection \
--with-unicode-backend=icu --disable-schemas-compile \
2012-03-28 10:11:38 +02:00
--with-accelerated-compositing=opengl \
${CONFIGURE_SHARED_ARGS}"
for ver in 2 3; do
[ ! -d ${wrksrc}/build-gtk${ver} ] && \
mkdir ${wrksrc}/build-gtk${ver}
cd ${wrksrc}/build-gtk${ver}
../configure ${args} --with-gtk=${ver}.0
done
}
2012-02-02 21:17:19 +01:00
do_build() {
for ver in 2 3; do
msg_normal "Building GTK+${ver} version...\n"
cd ${wrksrc}/build-gtk${ver}
2012-03-28 10:11:38 +02:00
make ${makejobs} || return 1
done
}
2012-02-02 21:17:19 +01:00
do_install() {
for ver in 2 3; do
msg_normal "Installing GTK+${ver} version...\n"
cd ${wrksrc}/build-gtk${ver}
make DESTDIR=${DESTDIR} install
done
}