32 lines
979 B
Plaintext
32 lines
979 B
Plaintext
# Description: Port of the portable web rendering engine WebKit to the GTK+ 2 and 3 platforms.
|
|
# URL: http://webkitgtk.org/
|
|
# Packager: alihan-ozturk28@hotmail.com
|
|
# Depends on: enchant cmake gstreamer1-plugins-base xorg-libxt gtk2 gtk3 hunspell icu libgudev libsecret libsoup libwebp xorg-mesa ruby sqlite geoclue gobject-introspection hicolor-icon-theme llvm harfbuzz libnotify
|
|
|
|
name=webkit2gtk3
|
|
version=2.12.3
|
|
release=1
|
|
|
|
source=(http://webkitgtk.org/releases/webkitgtk-$version.tar.xz)
|
|
build() {
|
|
cd webkitgtk-$version
|
|
sed -e 's/“/\"/' -e 's/”/\"/' \
|
|
-i Source/WebCore/xml/XMLViewer.{css,js}
|
|
|
|
mkdir -vp build
|
|
cd build
|
|
|
|
cmake -DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_SKIP_RPATH=ON \
|
|
-DPORT=GTK \
|
|
-DUSE_LIBHYPHEN=OFF \
|
|
-DLIB_INSTALL_DIR=/usr/lib \
|
|
-DENABLE_MINIBROWSER=ON \
|
|
-Wno-dev ..
|
|
|
|
make || make -j1
|
|
make DESTDIR=$PKG install || make -j1 DESTDIR=$PKG install
|
|
|
|
}
|