diff options
author | Michał Masłowski <mtjm@mtjm.eu> | 2011-11-26 11:56:56 +0100 |
---|---|---|
committer | Michał Masłowski <mtjm@mtjm.eu> | 2011-11-26 11:56:56 +0100 |
commit | 0fc7a60c47b41bf54d1f1429fddb6baddb80007c (patch) | |
tree | 77f6cc6477ba82a940d83258ffc98e2f26e40284 /kde-unstable/kdeutils-printer-applet/PKGBUILD | |
parent | 47ed35d319764a0de3a242524e037319bd1a52bd (diff) | |
parent | 6a642c093f29814cdd0fdefeee3ab9400eae490f (diff) |
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts:
community/ncdu/PKGBUILD
extra/gcin/PKGBUILD
extra/maxima/PKGBUILD
extra/sbcl/PKGBUILD
kde-unstable/calligra/PKGBUILD
kde-unstable/kdebase-workspace/PKGBUILD
Diffstat (limited to 'kde-unstable/kdeutils-printer-applet/PKGBUILD')
-rw-r--r-- | kde-unstable/kdeutils-printer-applet/PKGBUILD | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/kde-unstable/kdeutils-printer-applet/PKGBUILD b/kde-unstable/kdeutils-printer-applet/PKGBUILD new file mode 100644 index 000000000..43f4f2a39 --- /dev/null +++ b/kde-unstable/kdeutils-printer-applet/PKGBUILD @@ -0,0 +1,38 @@ +# $Id: PKGBUILD 143444 2011-11-24 16:17:04Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=kdeutils-printer-applet +pkgver=4.7.80 +pkgrel=1 +pkgdesc='System tray icon for managing print jobs' +url='http://kde.org/applications/system/printerapplet/' +arch=('i686' 'x86_64') +url='http://www.kde.org' +license=('GPL' 'LGPL' 'FDL') +depends=('kdebase-runtime' 'kdebindings-python' 'system-config-printer-common') +makedepends=('cmake' 'automoc4') +groups=('kde' 'kdeutils') +source=("http://download.kde.org/unstable/${pkgver}/src/printer-applet-${pkgver}.tar.bz2") +sha1sums=('d1fc4913baf8ca7a938347f7ce4efcb5b1e2ab85') + +build() { + cd "${srcdir}" + mkdir build + cd build + cmake ../printer-applet-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DPYTHON_EXECUTABLE=/usr/bin/python2 + make +} + +package() { + cd $srcdir/build + make DESTDIR=$pkgdir install + cd $srcdir/build/doc + make DESTDIR=$pkgdir install + + # Fix python 2 path + sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \ + "${pkgdir}"/usr/share/apps/printer-applet/{authconn,debug,monitor,printer-applet,statereason}.py +} |