mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
32 lines
806 B
Bash
32 lines
806 B
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
|
|
|
|
pkgname=psi
|
|
pkgver=0.15
|
|
pkgrel=1
|
|
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')
|
|
categories=('communication')
|
|
install='psi.install'
|
|
source=("http://downloads.sourceforge.net/psi/psi-${pkgver}.tar.bz2"
|
|
'chakralinux.patch')
|
|
md5sums=('aea15f17cf93e7cea52f305523f761be'
|
|
'4f41758f1ddff5cb2ac3396895da3530')
|
|
|
|
build() {
|
|
cd $srcdir/psi-${pkgver}
|
|
patch -p1 -i $srcdir/chakralinux.patch
|
|
./configure --prefix=/usr --release --no-separate-debug-info
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/psi-${pkgver}
|
|
make INSTALL_ROOT=$pkgdir install
|
|
}
|