mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
37 lines
850 B
Bash
37 lines
850 B
Bash
# $Id$
|
|
# Maintainer: Antonio Rojas <arojas@archlinux.org>
|
|
|
|
pkgname=kscreengenie
|
|
pkgver=2.0.1
|
|
pkgrel=1
|
|
pkgdesc="KDE screenshot capture utility"
|
|
arch=(i686 x86_64)
|
|
url='https://projects.kde.org/kscreengenie'
|
|
license=(GPL)
|
|
depends=(kio xcb-util-cursor libkscreen hicolor-icon-theme)
|
|
makedepends=(extra-cmake-modules kdoctools 'libkipi')
|
|
conflicts=(kdegraphics-ksnapshot)
|
|
provides=(kdegraphics-ksnapshot)
|
|
source=("http://download.kde.org/stable/$pkgname/${pkgver:0:3}/src/$pkgname-$pkgver.tar.xz")
|
|
install=$pkgname.install
|
|
md5sums=('06d4f83ae20dcaed950c2343640b5d90')
|
|
|
|
prepare() {
|
|
mkdir -p build
|
|
}
|
|
|
|
build() {
|
|
cd build
|
|
cmake ../$pkgname-$pkgver \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_INSTALL_LIBDIR=lib \
|
|
-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd build
|
|
make DESTDIR="$pkgdir" install
|
|
}
|