diff options
author | root <root@rshg054.dnsready.net> | 2013-08-13 01:33:19 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-08-13 01:33:19 -0700 |
commit | 7a65a910b77ad191d69881098c47f9b0c852d92e (patch) | |
tree | 9564e611af1442f8952a8cbddb3b0ad25ed71aab /community/commoncpp2 | |
parent | 60da6abff6c9577a783d72865f11de7a585e912e (diff) |
Tue Aug 13 01:31:08 PDT 2013
Diffstat (limited to 'community/commoncpp2')
-rw-r--r-- | community/commoncpp2/PKGBUILD | 38 | ||||
-rw-r--r-- | community/commoncpp2/commoncpp2.install | 22 |
2 files changed, 60 insertions, 0 deletions
diff --git a/community/commoncpp2/PKGBUILD b/community/commoncpp2/PKGBUILD new file mode 100644 index 000000000..806cc23a9 --- /dev/null +++ b/community/commoncpp2/PKGBUILD @@ -0,0 +1,38 @@ +# $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 new file mode 100644 index 000000000..762cdfb8e --- /dev/null +++ b/community/commoncpp2/commoncpp2.install @@ -0,0 +1,22 @@ +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: |