mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
0af05b343a
renamed checksums to kdeapps.sums added for all packages the pgp signature for new/removed packages check: https://community.kde.org/Applications/16.12_Release_Notes#Tarballs_that_we_have_split
27 lines
689 B
Bash
27 lines
689 B
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (x86_64): Giuseppe calà <jiveaxe@gmail.com>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=sofia-sip
|
|
pkgver=1.12.11
|
|
pkgrel=1
|
|
pkgdesc="An open-source SIP User-Agent library"
|
|
arch=('i686' 'x86_64')
|
|
url="http://sofia-sip.sourceforge.net"
|
|
options=('!libtool' 'zipman')
|
|
license=('LGPL')
|
|
depends=('glib2' 'openssl')
|
|
source=(http://downloads.sourceforge.net/sofia-sip/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('f3582c62080eeecd3fa4cd5d4ccb4225')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
./configure --prefix=/usr --with-openssl
|
|
make || return 1
|
|
make DESTDIR="$pkgdir" install
|
|
}
|