diff options
Diffstat (limited to 'extra/qimageblitz/PKGBUILD')
-rw-r--r-- | extra/qimageblitz/PKGBUILD | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/extra/qimageblitz/PKGBUILD b/extra/qimageblitz/PKGBUILD index 0e33fafda..7a568f85e 100644 --- a/extra/qimageblitz/PKGBUILD +++ b/extra/qimageblitz/PKGBUILD @@ -1,21 +1,26 @@ -# $Id: PKGBUILD 206544 2014-03-01 08:20:12Z andrea $ +# $Id: PKGBUILD 215848 2014-06-30 17:12:23Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Tobias Powalowski <tpowa@archlinux.org> pkgname=qimageblitz pkgver=0.0.6 -pkgrel=3 +pkgrel=4 pkgdesc="A graphical effect and filter library for KDE" arch=('i686' 'x86_64') url="http://www.kde.org/" license=('GPL2') depends=('qt4') makedepends=('cmake') -source=("http://download.kde.org/stable/${pkgname}/${pkgname}-${pkgver}.tar.bz2") -md5sums=('0ae2f7d4e0876764a97ca73799f61df4') +source=("http://download.kde.org/stable/${pkgname}/${pkgname}-${pkgver}.tar.bz2" + 'no-executable-stack.patch') +md5sums=('0ae2f7d4e0876764a97ca73799f61df4' + '67a56f4418bb2bda5f8a7444931ca7ac') prepare() { mkdir build + + cd ${pkgname}-${pkgver} + patch -p3 -i "${srcdir}"/no-executable-stack.patch } build() { |