diff options
author | root <root@rshg054.dnsready.net> | 2012-08-25 00:02:57 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-08-25 00:02:57 +0000 |
commit | 29896582b8f0f163c9b880fa64ee948d470ef5ba (patch) | |
tree | 54d918c561c83d78e4d07f94774f7f10640cafa9 /community/print-manager | |
parent | 12b846e1ead204137d60caba25f7e494b51b4dc8 (diff) |
Sat Aug 25 00:02:57 UTC 2012
Diffstat (limited to 'community/print-manager')
-rw-r--r-- | community/print-manager/PKGBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/community/print-manager/PKGBUILD b/community/print-manager/PKGBUILD new file mode 100644 index 000000000..c377ad94d --- /dev/null +++ b/community/print-manager/PKGBUILD @@ -0,0 +1,29 @@ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> +# Contributor: vicky91 <vickypaiers@gmail.com> + +pkgname=print-manager +pkgver=0.2.0 +pkgrel=1 +pkgdesc="A KDE tool for managing print jobs and printers" +arch=('i686' 'x86_64') +url="https://projects.kde.org/projects/playground/base/print-manager" +license=('GPL') +depends=('kdebase-workspace' 'libcups') +makedepends=('cmake' 'automoc4') +source=("http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2") +md5sums=('183c22e91021b0357c2a27146c931de0') + +build() { + mkdir build + cd build + cmake ../${pkgname}-${pkgver} \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_BUILD_TYPE=Release \ + -DCUPS_1_6=ON + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} |