summaryrefslogtreecommitdiff
path: root/pcr/sipwitch
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2013-02-15 20:59:24 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2013-02-15 20:59:24 -0500
commit49eec46aeb12ce8e0d269ef9a04d48b64b0b5628 (patch)
tree1a838ded7247ea89222f258443102446445b1c4a /pcr/sipwitch
parent3e6467f21d721bd98fa72ec5b842a673f3d60549 (diff)
Adding packages to pcr
Diffstat (limited to 'pcr/sipwitch')
-rw-r--r--pcr/sipwitch/PKGBUILD32
1 files changed, 32 insertions, 0 deletions
diff --git a/pcr/sipwitch/PKGBUILD b/pcr/sipwitch/PKGBUILD
new file mode 100644
index 000000000..22852780c
--- /dev/null
+++ b/pcr/sipwitch/PKGBUILD
@@ -0,0 +1,32 @@
+# Maintainer: Dan Serban
+# Contributors: David Zaragoza, Andrea Scarpino
+# Maintainer (Parabola): André Silva <andre.paulista@adinet.com.uy>
+
+pkgname=sipwitch
+pkgver=1.2.4
+pkgrel=2
+pkgdesc="A call and registration server for the SIP protocol"
+arch=(i686 x86_64 mips64el)
+url=http://www.gnutelephony.org/index.php/GNU_SIP_Witch
+license=(GPL)
+depends=(libexosip2 ucommon)
+makedepends=(lynx)
+options=('!libtool')
+source=("http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz")
+md5sums=('6119cecb062ba4d0af18b427b01c41e2')
+
+build()
+{
+ cd "${pkgname}-${pkgver}"
+ ./configure --prefix=/usr
+ make
+}
+
+package()
+{
+ cd "${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+ mkdir -p "${pkgdir}"/etc/rc.d
+ touch "${pkgdir}"/etc/rc.d/"${pkgname}"
+}
+