summaryrefslogtreecommitdiff
path: root/community/libircclient/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-07-17 00:58:52 -0700
committerroot <root@rshg054.dnsready.net>2013-07-17 00:58:52 -0700
commitdee9f17b595ea903a982d31d1124b302bb17e2ff (patch)
tree295fdab78e28e1952fbc13ce824d57c88ede4e3b /community/libircclient/PKGBUILD
parent380530d02a5449fdef97b63b394a6743c3de0092 (diff)
Wed Jul 17 00:58:51 PDT 2013
Diffstat (limited to 'community/libircclient/PKGBUILD')
-rw-r--r--community/libircclient/PKGBUILD51
1 files changed, 0 insertions, 51 deletions
diff --git a/community/libircclient/PKGBUILD b/community/libircclient/PKGBUILD
deleted file mode 100644
index cba8f34e7..000000000
--- a/community/libircclient/PKGBUILD
+++ /dev/null
@@ -1,51 +0,0 @@
-# $Id: PKGBUILD 93508 2013-07-04 20:56:31Z bpiotrowski $
-# Maintainer: Bartłomiej Piotrowski <barthalion@gmail.com>
-# Maintainer: SpepS <dreamspepser at yahoo dot it>
-# Contributor: Marcel Wysocki <maci@satgnu.net>
-# Contributor: coolkehon <coolkehon at g m a i l>
-
-pkgname=libircclient
-pkgver=1.7
-pkgrel=1
-pkgdesc='Small but powerful library, which implements client-server IRC protocol'
-arch=('i686' 'x86_64')
-url='http://www.ulduzsoft.com/libircclient/'
-depends=('glibc')
-makedepends=('python2-sphinx' 'python2-rst2pdf')
-license=('GPL')
-source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz")
-md5sums=('968370276f7cf21302f504f9bce1fc99')
-
-build() {
- cd $pkgname-$pkgver
-
- # add fPIC flag for x86_64
- [[ "$CARCH" = "x86_64" ]] && export CFLAGS="$CFLAGS -fPIC"
-
- sed -e "/install/s/lib/all/" \
- -e "/DESTDIR/s/\.a/\.so/g" \
- -e "s/@\/include/&\/$pkgname/" \
- -i src/Makefile.in
-
- ./configure --prefix=/usr \
- --libdir=/usr/lib \
- --enable-shared
- cd src && make
-
- cd ../doc
- sed -i 's/sphinx-build/sphinx-build2/g' Makefile
- make singlehtml man
-}
-
-package() {
- cd $pkgname-$pkgver/src
- make DESTDIR="$pkgdir" install
-
- install -d "$pkgdir"/usr/share/doc/$pkgname
- cp -a ../doc/_build/singlehtml/* "$pkgdir"/usr/share/doc/$pkgname
- cp -a ../doc/_build/man "$pkgdir"/usr/share
-
- install -d "$pkgdir"/usr/share/$pkgname/examples
- install -Dm644 ../examples/* \
- "$pkgdir"/usr/share/$pkgname/examples
-}