desktop/ktp-send-file/PKGBUILD

36 lines
946 B
Bash
Raw Normal View History

2011-08-08 01:49:51 +08:00
#
2012-07-25 23:26:38 +08:00
# Apps Packages for Chakra, part of chakra-project.org
2011-08-08 01:49:51 +08:00
#
2012-07-25 23:26:38 +08:00
# Maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
2011-08-08 01:49:51 +08:00
pkgname=ktp-send-file
2012-07-25 23:26:38 +08:00
pkgver=0.4.1
2011-08-08 01:49:51 +08:00
pkgrel=1
pkgdesc="A File manager plugin to launch a file transfer job with a specified contact"
arch=('i686' 'x86_64')
url="http://www.kde.org"
license=('GPL')
2012-07-25 23:26:38 +08:00
depends=('ktp-filetransfer-handler' 'ktp-contact-list')
2011-08-08 01:49:51 +08:00
makedepends=('cmake' 'automoc4')
2012-04-05 23:24:51 +08:00
conflicts=('telepathy-kde-send-file')
replaces=('telepathy-kde-send-file')
provides=('telepathy-kde-send-file')
groups=('kde-telepathy')
2011-08-08 01:49:51 +08:00
install=${pkgname}.install
2012-04-05 23:24:51 +08:00
source=("ftp://mirrors.mit.edu/kde/unstable/kde-telepathy/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2")
md5sums=('3fd2fc86b7147bfc6f29f8094c2f46c7')
2011-08-08 01:49:51 +08:00
build() {
cd "${srcdir}"
mkdir build
cd build
cmake ../${pkgname}-${pkgver} \
2011-08-08 01:49:51 +08:00
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release
make
}
package() {
cd "${srcdir}"/build
make DESTDIR="${pkgdir}" install
}