mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
36 lines
880 B
Bash
Executable File
36 lines
880 B
Bash
Executable File
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (x86_64): Giuseppe Calà <jiveaxe@gmail.com>
|
|
# contributor: Alois Nespor <Alois.Nespor@gmail.com>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=bibletime-kde4
|
|
origname=bibletime
|
|
pkgver=2.9.1
|
|
pkgrel=1
|
|
pkgdesc="Bible software that uses the Sword Engine for KDE4"
|
|
arch=('i686' 'x86_64')
|
|
url=("http://www.blog.bibletime.info")
|
|
license=('GPL2')
|
|
depends=('qt' 'sword' 'openssl')
|
|
makedepends=('cmake' 'boost')
|
|
source=(http://sourceforge.net/projects/bibletime/files/bibletime-$pkgver.tar.bz2)
|
|
md5sums=('ff89f440418f3e23c0bf039810f21479')
|
|
|
|
build() {
|
|
cd $srcdir/bibletime-$pkgver
|
|
cmake -DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_BUILD_TYPE=Release ${srcdir}/$origname-$pkgver
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/bibletime-$pkgver
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
}
|
|
|