mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-11 04:54:37 +08:00
37 lines
1015 B
Bash
37 lines
1015 B
Bash
|
#
|
||
|
# 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>
|
||
|
|
||
|
# include global config
|
||
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
||
|
|
||
|
pkgname=telepathy-kde-send-file
|
||
|
pkgver=0.1.0
|
||
|
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')
|
||
|
depends=('telepathy-kde-filetransfer-handler')
|
||
|
makedepends=('cmake' 'automoc4')
|
||
|
groups=('telepathy-kde')
|
||
|
install=${pkgname}.install
|
||
|
source=("http://download.kde.org/unstable/telepathy-kde/${pkgver}/src/${pkgname}_${pkgver}.tar.bz2")
|
||
|
sha1sums=('ef49d3008294a6eacad846fbe1c042d59c5c8e69')
|
||
|
|
||
|
build() {
|
||
|
cd "${srcdir}"
|
||
|
mkdir build
|
||
|
cd build
|
||
|
cmake ../${pkgname}_${pkgver} \
|
||
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
||
|
-DCMAKE_BUILD_TYPE=Release
|
||
|
make
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd "${srcdir}"/build
|
||
|
make DESTDIR="${pkgdir}" install
|
||
|
}
|