summaryrefslogtreecommitdiff
path: root/community/commoncpp2
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/commoncpp2
parent0ade1da67addf154d93c6a6399b0a3d5a18a3336 (diff)
Sun Aug 11 01:21:31 PDT 2013
Diffstat (limited to 'community/commoncpp2')
-rw-r--r--community/commoncpp2/PKGBUILD38
-rw-r--r--community/commoncpp2/commoncpp2.install22
2 files changed, 0 insertions, 60 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:
diff --git a/community/commoncpp2/commoncpp2.install b/community/commoncpp2/commoncpp2.install
deleted file mode 100644
index 762cdfb8e..000000000
--- a/community/commoncpp2/commoncpp2.install
+++ /dev/null
@@ -1,22 +0,0 @@
-infodir=usr/share/info
-filelist=(commoncpp2.info)
-
-post_install() {
- [[ -x usr/bin/install-info ]] || return 0
- for file in "${filelist[@]}"; do
- install-info "$infodir/$file.gz" "$infodir/dir" 2> /dev/null
- done
-}
-
-post_upgrade() {
- post_install "$1"
-}
-
-pre_remove() {
- [[ -x usr/bin/install-info ]] || return 0
- for file in "${filelist[@]}"; do
- install-info --delete "$infodir/$file.gz" "$infodir/dir" 2> /dev/null
- done
-}
-
-# vim:set ts=2 sw=2 et: