diff options
author | coadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu> | 2017-03-07 15:47:21 -0300 |
---|---|---|
committer | coadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu> | 2017-03-07 18:36:28 -0300 |
commit | 4c7affb892e7c6983ef7fff4f5b1e5847b03f6d9 (patch) | |
tree | f6b5189a8b9906235f53a96af940ba59379a3523 /pcr | |
parent | 074ac87ec179b6a92ff5013f1af2330f2534cb40 (diff) | |
download | abslibre-4c7affb892e7c6983ef7fff4f5b1e5847b03f6d9.tar.gz abslibre-4c7affb892e7c6983ef7fff4f5b1e5847b03f6d9.tar.bz2 abslibre-4c7affb892e7c6983ef7fff4f5b1e5847b03f6d9.zip |
ace-1.10-4: available in [pcr]
Diffstat (limited to 'pcr')
-rw-r--r-- | pcr/ace/PKGBUILD | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/pcr/ace/PKGBUILD b/pcr/ace/PKGBUILD new file mode 100644 index 000000000..5a12de88c --- /dev/null +++ b/pcr/ace/PKGBUILD @@ -0,0 +1,31 @@ +# Maintainer: Márcio Silva <coadde@parabola.nu> + +pkgname='ace' +pkgver='1.10' +pkgrel=4 +pkgdesc='A simple yet powerful VoIP Corporate Directory enumeration tool that mimics the behavior of an IP Phone in order to download the name and extension entries that a given phone can display on its screen interface.' +url='http://ucsniff.sourceforge.net/ace.html' +license=('GPL') +depends=('libpcap') +arch=('i686' 'x86_64' 'armv7h') +source=("http://downloads.sourceforge.net/ucsniff/ace-$pkgver.tar.gz") +sha1sums=('747aee37f74e71101317809797cdaed7077dd29e') + +prepare() { + cd "$srcdir/ace-$pkgver" + + sed -i 's#linux/if_tr.h#netinet/if_tr.h#' client.h + sed -i "s:gcc :gcc $CFLAGS :g" Makefile +} + +build() { + cd "$srcdir/ace-$pkgver" + + make +} + +package() { + cd "$srcdir/ace-$pkgver" + + install -Dm755 ace "$pkgdir/usr/bin/ace" +} |