summaryrefslogtreecommitdiff
path: root/community/pion/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
committerroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
commit18a41d682d6e91e0d28fce23eb75292f477bd620 (patch)
treebce8f660d7d0b6541cadbc49bf1bac2434e4c0c6 /community/pion/PKGBUILD
parent0ade1da67addf154d93c6a6399b0a3d5a18a3336 (diff)
Sun Aug 11 01:21:31 PDT 2013
Diffstat (limited to 'community/pion/PKGBUILD')
-rw-r--r--community/pion/PKGBUILD44
1 files changed, 0 insertions, 44 deletions
diff --git a/community/pion/PKGBUILD b/community/pion/PKGBUILD
deleted file mode 100644
index 02be15ca0..000000000
--- a/community/pion/PKGBUILD
+++ /dev/null
@@ -1,44 +0,0 @@
-# $Id: PKGBUILD 94042 2013-07-13 12:35:54Z svenstaro $
-# Maintainer: Lukas Jirkovsky <l.jirkovsky@gmail.com>
-pkgname=pion
-pkgver=5.0.2
-pkgrel=1
-pkgdesc="A C++ development library for implementing lightweight HTTP interfaces"
-url="https://github.com/cloudmeter/pion"
-arch=('i686' 'x86_64')
-license=('custom:Boost')
-depends=('boost-libs' 'openssl' 'log4cpp')
-makedepends=('boost')
-provides=('pion-net')
-conflicts=('pion-net')
-replaces=('pion-net')
-source=(https://github.com/cloudmeter/pion/archive/$pkgver.zip)
-md5sums=('1f6a9f69114235ca98756cbcab16d162')
-
-build() {
- cd "$srcdir/$pkgname-$pkgver"
-
- sh autogen.sh
-
- # override configure bug (forces debug even when nobody asked for it)
- sed -i "s/ -ggdb//g" configure
- # override Makefile bug
- sed -i "/docs:/ s/doxygen-doc//" Makefile.in
-
- ./configure --prefix=/usr --disable-doxygen-doc
-
- make
-}
-
-check() {
- cd "$srcdir/$pkgname-$pkgver"
- make -k check
-}
-
-package() {
- cd "$srcdir/$pkgname-$pkgver"
- make DESTDIR="$pkgdir" install
-
- # install license
- install -D -m0755 COPYING "$pkgdir/usr/share/licenses/$pkgname/Boost"
-}