diff options
author | Joshua I. Haase H. (xihh) <hahj87@gmail.com> | 2012-09-18 23:41:48 -0500 |
---|---|---|
committer | Joshua I. Haase H. (xihh) <hahj87@gmail.com> | 2012-09-18 23:41:48 -0500 |
commit | fa95bb04dbbc63d07b1f84fb8ce5272085097eb7 (patch) | |
tree | 09eb51305956e84dfb79aa89f5b99e595371c54d /community/print-manager/PKGBUILD | |
parent | 6eefbbf4300e680dc93487c11a1ae35ee8299f06 (diff) | |
parent | 5a05be089c68617c86c9c555e63f2b0314451ebf (diff) |
Merge branch 'master' of gitpar:abslibre-mips64el
Diffstat (limited to 'community/print-manager/PKGBUILD')
-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 +} |