desktop/ktorrent/PKGBUILD

28 lines
784 B
Bash
Raw Normal View History

2010-06-02 03:45:06 +08:00
#
# Chakra Packages for Chakra, part of chakra-project.org
#
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
2010-05-31 06:57:45 +08:00
pkgname=ktorrent
2010-07-10 10:57:49 +08:00
pkgver=4.0.2
2010-06-01 06:46:56 +08:00
pkgrel=1
2010-07-10 10:57:49 +08:00
ktorver=4.0.2
2010-05-31 06:57:45 +08:00
pkgdesc="A BitTorrent program for KDE"
arch=('i686' 'x86_64')
url="http://ktorrent.org"
license=('GPL2')
2010-06-01 06:46:56 +08:00
depends=('kdelibs' 'kdebase-runtime' 'kdepimlibs' 'qca' 'gmp' 'taglib' 'libktorrent')
makedepends=('cmake' 'automoc4')
source=(http://ktorrent.org/downloads/${ktorver}/ktorrent-${pkgver}.tar.bz2)
2010-05-31 06:57:45 +08:00
options=('libtool')
2010-07-10 10:57:49 +08:00
md5sums=('7f4793e098cdb144bc83cec386623dad')
2010-05-31 06:57:45 +08:00
build() {
2010-07-10 10:57:49 +08:00
cd ${srcdir}/ktorrent-4.0.2
2010-05-31 06:57:45 +08:00
2010-06-01 06:46:56 +08:00
cmake . -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr
2010-05-31 06:57:45 +08:00
make || return 1
2010-06-01 06:46:56 +08:00
make DESTDIR=${pkgdir} install
2010-05-31 06:57:45 +08:00
}