wok annotate pywebkitgtk/receipt @ rev 14517

linux: fix local privilege escalation 0day, 2.6.37 - 3.8.10
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu May 16 16:02:27 2013 +0200 (2013-05-16)
parents 9035e8329b7d
children a00bf44ed23d
rev   line source
slaxemulator@7726 1 # SliTaz package receipt.
slaxemulator@7726 2
slaxemulator@7726 3 PACKAGE="pywebkitgtk"
slaxemulator@7726 4 VERSION="1.1.7"
slaxemulator@7726 5 CATEGORY="development"
slaxemulator@7726 6 SHORT_DESC="Python bindings to the Webkit GTK+ port."
slaxemulator@7726 7 MAINTAINER="slaxemulator@gmail.com"
slaxemulator@7726 8 DEPENDS="libwebkit pygtk libxslt"
pankso@12481 9 BUILD_DEPENDS="libwebkit-dev pygtk-dev libxslt-dev python-dev util-linux-uuid-dev pkg-config"
slaxemulator@7726 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
slaxemulator@7726 11 WEB_SITE="http://code.google.com/p/pywebkitgtk/"
slaxemulator@7726 12 WGET_URL="http://pywebkitgtk.googlecode.com/files/$TARBALL"
slaxemulator@7726 13
slaxemulator@7726 14 # Rules to configure and make the package.
slaxemulator@7726 15 compile_rules()
slaxemulator@7726 16 {
slaxemulator@7726 17 cd $src
slaxemulator@7726 18 ./configure \
slaxemulator@7726 19 --prefix=/usr \
slaxemulator@7726 20 --infodir=/usr/share/info \
slaxemulator@7726 21 --mandir=/usr/share/man \
slaxemulator@7726 22 $CONFIGURE_ARGS &&
slaxemulator@7726 23 make && make DESTDIR=$PWD/_pkg install
slaxemulator@7726 24 }
slaxemulator@7726 25
slaxemulator@7726 26 # Rules to gen a SliTaz package suitable for Tazpkg.
slaxemulator@7726 27 genpkg_rules()
slaxemulator@7726 28 {
slaxemulator@7726 29 mkdir -p $fs/usr/share
slaxemulator@7726 30 cp -a $_pkg/usr/lib $fs/usr
slaxemulator@7726 31 cp -a $_pkg/usr/share/pywebkitgtk $fs/usr/share
slaxemulator@7726 32 }
slaxemulator@7726 33