mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
35 lines
957 B
Bash
35 lines
957 B
Bash
#
|
|
# Apps 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=psi
|
|
pkgver=0.14
|
|
pkgrel=4
|
|
pkgdesc='Instant messaging application designed for the Jabber IM'
|
|
url='http://psi-im.org/'
|
|
license=('GPL')
|
|
arch=('i686' 'x86_64')
|
|
depends=('qca-ossl' 'qca-gnupg' 'enchant' 'libxss' 'xdg-utils')
|
|
install='psi.install'
|
|
source=("http://downloads.sourceforge.net/psi/psi-${pkgver}.tar.bz2"
|
|
'chakralinux.patch')
|
|
md5sums=('9d7dcce3bcab53b741a712199bd986be'
|
|
'cf9c1cc0557a41a1bc12b7c102fbbded')
|
|
|
|
build() {
|
|
cd $srcdir/psi-${pkgver}
|
|
patch -p1 -i $srcdir/archlinux.patch
|
|
./configure --prefix=/usr --disable-bundled-qca || return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/psi-${pkgver}
|
|
make INSTALL_ROOT=$pkgdir install
|
|
}
|