summaryrefslogtreecommitdiff
path: root/kde-unstable/kdeutils-print-manager
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-11-22 02:31:09 -0800
committerroot <root@rshg054.dnsready.net>2012-11-22 02:31:09 -0800
commit38ea2e71952c00f18230ed0e691532aadff4e2c1 (patch)
treebc1c7cfd697773062d53a0a23b35afdb0fc775c2 /kde-unstable/kdeutils-print-manager
parentf48f6c82e23a3bacb8a0952c2d2cf9af1e6bf42d (diff)
Thu Nov 22 02:27:52 PST 2012
Diffstat (limited to 'kde-unstable/kdeutils-print-manager')
-rw-r--r--kde-unstable/kdeutils-print-manager/PKGBUILD31
1 files changed, 31 insertions, 0 deletions
diff --git a/kde-unstable/kdeutils-print-manager/PKGBUILD b/kde-unstable/kdeutils-print-manager/PKGBUILD
new file mode 100644
index 000000000..e88be3aff
--- /dev/null
+++ b/kde-unstable/kdeutils-print-manager/PKGBUILD
@@ -0,0 +1,31 @@
+# $Id: PKGBUILD 171854 2012-11-21 20:05:56Z andrea $
+# Maintainer: Andrea Scarpino <andrea@archlinux.org>
+
+pkgname=kdeutils-print-manager
+pkgver=4.9.80
+pkgrel=1
+pkgdesc="A tool for managing print jobs and printers"
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kdeutils/print-manager'
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdebase-workspace' 'libcups' 'system-config-printer')
+makedepends=('cmake' 'automoc4')
+replaces=('print-manager' 'kdeutils-printer-applet')
+conflicts=('print-manager')
+groups=('kde' 'kdeutils')
+source=("http://download.kde.org/unstable/${pkgver}/src/print-manager-${pkgver}.tar.xz")
+md5sums=('98678a81d89f7d1671136e81f5e8e01e')
+
+build() {
+ mkdir build
+ cd build
+ cmake ../print-manager-${pkgver} \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_BUILD_TYPE=Release
+ make
+}
+
+package() {
+ cd build
+ make DESTDIR="${pkgdir}" install
+}