summaryrefslogtreecommitdiff
path: root/community/commoncpp2/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/commoncpp2/PKGBUILD')
-rw-r--r--community/commoncpp2/PKGBUILD38
1 files changed, 0 insertions, 38 deletions
diff --git a/community/commoncpp2/PKGBUILD b/community/commoncpp2/PKGBUILD
deleted file mode 100644
index 806cc23a9..000000000
--- a/community/commoncpp2/PKGBUILD
+++ /dev/null
@@ -1,38 +0,0 @@
-# $Id: PKGBUILD 64380 2012-02-12 11:04:24Z arodseth $
-# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
-# Contributor: Franco Tortoriello <franco.tortoriello@gmail.com>
-# Contributor: Andrea Scarpino <andrea@archlinux.org>
-# Contributor: Jeff Mickey <jeff@archlinux.org>
-# Contributor: John Proctor <jproctor@prium.net>
-# Contributor: Alexander Rødseth <rodseth@gmail.com>
-
-pkgname=commoncpp2
-pkgver=1.8.1
-pkgrel=3
-pkgdesc="GNU Common C++ 2"
-arch=('x86_64' 'i686')
-url='http://www.gnu.org/software/commoncpp/'
-license=('GPL' 'custom')
-depends=('gcc-libs' 'zlib' 'sh')
-options=('!libtool' '!makeflags')
-install=$pkgname.install
-source=("http://ftp.gnu.org/pub/gnu/commoncpp/$pkgname-$pkgver.tar.gz")
-sha256sums=('53ced4aff74e28a1d8018eb2b4974519028db3c12471ab6dff1c873578c9af4e')
-
-build() {
- cd "$srcdir/$pkgname-$pkgver"
-
- sed -i -e '50 a\#include <sys/stat.h>' inc/cc++/applog.h
- ./configure --prefix=/usr --mandir=/usr/share/man
- make
-}
-
-package() {
- cd "$srcdir/$pkgname-$pkgver"
-
- make DESTDIR="$pkgdir" install
- install -Dm644 COPYING.addendum \
- "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et: