mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-05 08:42:11 +01:00
39 lines
698 B
Plaintext
39 lines
698 B
Plaintext
# Contributor:
|
|
# Maintainer: Leonardo Arena <rnalrd@gmail.com>
|
|
pkgname=sipsak
|
|
pkgver=0.9.6
|
|
pkgrel=0
|
|
pkgdesc="SIP swiss army knife"
|
|
url="http://sipsak.org/"
|
|
arch="all"
|
|
license="GPL"
|
|
depends=
|
|
makedepends=
|
|
install=
|
|
subpackages="$pkgname-doc"
|
|
source="http://download.berlios.de/$pkgname/$pkgname-$pkgver-1.tar.gz"
|
|
|
|
_builddir="$srcdir"/$pkgname-$pkgver
|
|
|
|
prepare() {
|
|
cd "$_builddir"
|
|
# apply patches here
|
|
return 0
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
md5sums="c4eb8e282902e75f4f040f09ea9d99d5 sipsak-0.9.6-1.tar.gz"
|