diff options
author | Leonardo Arena <rnalrd@gmail.com> | 2011-01-03 14:44:21 +0000 |
---|---|---|
committer | Leonardo Arena <rnalrd@gmail.com> | 2011-01-03 14:44:21 +0000 |
commit | 208dc886729f174c8436963d0667f3b6606384ae (patch) | |
tree | a42c3988d16424f9c6a278b5b5f628711af287bf | |
parent | b8cd0b34d866ac1458f626095edc6ad34398ead0 (diff) | |
download | aports-208dc886729f174c8436963d0667f3b6606384ae.tar.bz2 aports-208dc886729f174c8436963d0667f3b6606384ae.tar.xz |
testing/sipsak: new aport
-rw-r--r-- | testing/sipsak/APKBUILD | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/testing/sipsak/APKBUILD b/testing/sipsak/APKBUILD new file mode 100644 index 000000000..0a8742f44 --- /dev/null +++ b/testing/sipsak/APKBUILD @@ -0,0 +1,38 @@ +# 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="x86 x86_64" +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 + exit 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" |