mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-12 11:21:50 +01:00
35 lines
735 B
Plaintext
35 lines
735 B
Plaintext
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=sipvicious
|
|
pkgver=0.2.8
|
|
pkgrel=0
|
|
pkgdesc="Tools for auditing SIP based VoIP systems"
|
|
url="http://code.google.com/p/sipvicious/"
|
|
arch="noarch"
|
|
license="GPL2"
|
|
depends=""
|
|
depends_dev=""
|
|
makedepends="$depends_dev"
|
|
install=""
|
|
subpackages=""
|
|
source="http://sipvicious.googlecode.com/files/$pkgname-$pkgver.tar.gz"
|
|
_builddir="$srcdir"/$pkgname-$pkgver
|
|
|
|
prepare() {
|
|
return 0
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
return 0
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
for file in *.py; do
|
|
install -Dm 0755 $file "$pkgdir"/usr/bin/$file || return 1
|
|
done
|
|
}
|
|
|
|
md5sums="5893b53ff97b89a06383ff6a78b62f36 sipvicious-0.2.8.tar.gz"
|