Created
May 15, 2011 02:24
-
-
Save sdiehl/972839 to your computer and use it in GitHub Desktop.
PKGBUILD
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| pkgbase=libwebkit | |
| pkgname=(libwebkit libwebkit3) | |
| pkgver=1.4.0 | |
| pkgrel=1 | |
| pkgdesc="An opensource web content engine" | |
| arch=('i686' 'x86_64') | |
| url="http://webkitgtk.org/" | |
| license=('custom') | |
| depends=('libxt' 'libxslt' 'sqlite3' 'icu' 'gstreamer0.10-base' 'libsoup' 'enchant') | |
| makedepends=('gperf' 'gtk-doc' 'gobject-introspection' 'python2' 'gtk2') | |
| options=('!libtool') | |
| install=libwebkit.install | |
| source=(http://webkitgtk.org/webkit-${pkgver}.tar.gz gcc46.patch) | |
| md5sums=('10c969db3b5484c71df1aa9a338377ff' | |
| '970a2fa91b9827dff8e9b9edb4867701') | |
| build() { | |
| cd "${srcdir}/webkit-${pkgver}" | |
| patch -Np1 -i "${srcdir}/gcc46.patch" | |
| mkdir build-gtk{2,3} | |
| ( cd build-gtk2 && _build --with-gtk=2.0 ) | |
| ( cd build-gtk3 && _build --with-gtk=3.0 ) | |
| } | |
| _build() { | |
| PYTHON=/usr/bin/python2 ../configure --prefix=/usr \ | |
| --enable-introspection \ | |
| --with-font-backend=freetype --enable-gtk-doc \ | |
| --with-unicode-backend=icu \ | |
| --enable-mathml \ | |
| --enable-spellcheck "$@" | |
| make all stamp-po | |
| } | |
| package_libwebkit() { | |
| pkgdesc+=" (for GTK2)" | |
| depends+=(gtk2) | |
| provides=('webkitgtk-svn') | |
| conflicts=('webkitgtk-svn') | |
| replaces=('webkitgtk-svn') | |
| cd "$srcdir/webkit-$pkgver/build-gtk2" | |
| make DESTDIR="${pkgdir}" install | |
| install -Dm644 ../Source/WebKit/LICENSE "${pkgdir}/usr/share/licenses/libwebkit/LICENSE" | |
| } | |
| package_libwebkit3() { | |
| pkgdesc+=" (for GTK3)" | |
| depends+=(gtk3) | |
| cd "${srcdir}/webkit-${pkgver}/build-gtk3" | |
| make DESTDIR="${pkgdir}" install | |
| install -Dm644 ../Source/WebKit/LICENSE "${pkgdir}/usr/share/licenses/libwebkit3/LICENSE" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment