desktop/dolphin/PKGBUILD

35 lines
849 B
Bash
Raw Normal View History

2013-12-18 02:36:04 +08:00
# Include global configuration
source ../kdeapps.conf
2013-06-26 03:47:13 +08:00
pkgname=dolphin
2013-06-26 03:47:13 +08:00
pkgver=${_kdever}
2015-12-05 07:26:22 +08:00
pkgrel=1
pkgdesc="File Manager"
arch=('x86_64')
url="http://kde.org/applications/system/dolphin/"
license=(LGPL)
2016-04-10 19:16:03 +08:00
depends=('baloo-widgets' 'knewstuff' 'kio-extras' 'ktexteditor' 'kactivities-frameworks' 'kio>=5.16.0' 'kcmutils')
makedepends=('extra-cmake-modules' 'kdoctools' 'python3')
conflicts=('kde-baseapps-dolphin<15.04.3-1')
replaces=(kde-baseapps-dolphin)
groups=('kde' 'kde-uninstall' 'kde-applications' 'kdebase')
install=$pkgname.install
options=('docs' 'debug')
source=("$_mirror/${pkgname}-$_kdever.tar.xz")
sha256sums=(`grep ${pkgname}-$_kdever.tar.xz ../checksums.txt | cut -d " " -f1`)
2013-06-26 03:47:13 +08:00
prepare() {
mkdir -p build
}
2013-06-26 03:47:13 +08:00
build() {
cd build
cmake_kf5 ../${pkgname}-${pkgver}
make
2013-06-26 03:47:13 +08:00
}
package() {
cd build
make DESTDIR=${pkgdir} install
2013-06-26 03:47:13 +08:00
}