[arch-commits] Commit in ccrtp/repos (6 files)

Eric Bélanger eric at archlinux.org
Tue Aug 12 00:31:47 UTC 2014


    Date: Tuesday, August 12, 2014 @ 02:31:46
  Author: eric
Revision: 219593

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  ccrtp/repos/staging-i686/
  ccrtp/repos/staging-i686/PKGBUILD
    (from rev 219592, ccrtp/trunk/PKGBUILD)
  ccrtp/repos/staging-i686/ccrtp.install
    (from rev 219592, ccrtp/trunk/ccrtp.install)
  ccrtp/repos/staging-x86_64/
  ccrtp/repos/staging-x86_64/PKGBUILD
    (from rev 219592, ccrtp/trunk/PKGBUILD)
  ccrtp/repos/staging-x86_64/ccrtp.install
    (from rev 219592, ccrtp/trunk/ccrtp.install)

------------------------------+
 staging-i686/PKGBUILD        |   32 ++++++++++++++++++++++++++++++++
 staging-i686/ccrtp.install   |   22 ++++++++++++++++++++++
 staging-x86_64/PKGBUILD      |   32 ++++++++++++++++++++++++++++++++
 staging-x86_64/ccrtp.install |   22 ++++++++++++++++++++++
 4 files changed, 108 insertions(+)

Copied: ccrtp/repos/staging-i686/PKGBUILD (from rev 219592, ccrtp/trunk/PKGBUILD)
===================================================================
--- staging-i686/PKGBUILD	                        (rev 0)
+++ staging-i686/PKGBUILD	2014-08-12 00:31:46 UTC (rev 219593)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer:
+# Contributor: Sergej Pupykin <pupykin.s+arch at gmail.com>
+# Contributor: Jeff Mickey <jeff at archlinux.org>
+# Contributor: John Proctor <jproctor at prium.net>
+# Contributor: Alexander Rødseth <rodseth at gmail.com>
+
+pkgname=ccrtp
+pkgver=2.0.9
+pkgrel=1
+pkgdesc="An implementation of RTP, the real-time transport protocol from the IETF"
+arch=('i686' 'x86_64')
+url="http://www.gnu.org/software/ccrtp/"
+license=('GPL' 'custom')
+depends=('ucommon' 'libgcrypt')
+install=$pkgname.install
+source=("ftp://ftp.gnu.org/pub/gnu/$pkgname/$pkgname-$pkgver.tar.gz"{,.sig})
+md5sums=('f2e143c2558fbbe5715a1f04be2fb692'
+         'SKIP')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 COPYING.addendum "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Copied: ccrtp/repos/staging-i686/ccrtp.install (from rev 219592, ccrtp/trunk/ccrtp.install)
===================================================================
--- staging-i686/ccrtp.install	                        (rev 0)
+++ staging-i686/ccrtp.install	2014-08-12 00:31:46 UTC (rev 219593)
@@ -0,0 +1,22 @@
+infodir=usr/share/info
+filelist=(ccrtp.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:

Copied: ccrtp/repos/staging-x86_64/PKGBUILD (from rev 219592, ccrtp/trunk/PKGBUILD)
===================================================================
--- staging-x86_64/PKGBUILD	                        (rev 0)
+++ staging-x86_64/PKGBUILD	2014-08-12 00:31:46 UTC (rev 219593)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer:
+# Contributor: Sergej Pupykin <pupykin.s+arch at gmail.com>
+# Contributor: Jeff Mickey <jeff at archlinux.org>
+# Contributor: John Proctor <jproctor at prium.net>
+# Contributor: Alexander Rødseth <rodseth at gmail.com>
+
+pkgname=ccrtp
+pkgver=2.0.9
+pkgrel=1
+pkgdesc="An implementation of RTP, the real-time transport protocol from the IETF"
+arch=('i686' 'x86_64')
+url="http://www.gnu.org/software/ccrtp/"
+license=('GPL' 'custom')
+depends=('ucommon' 'libgcrypt')
+install=$pkgname.install
+source=("ftp://ftp.gnu.org/pub/gnu/$pkgname/$pkgname-$pkgver.tar.gz"{,.sig})
+md5sums=('f2e143c2558fbbe5715a1f04be2fb692'
+         'SKIP')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 COPYING.addendum "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Copied: ccrtp/repos/staging-x86_64/ccrtp.install (from rev 219592, ccrtp/trunk/ccrtp.install)
===================================================================
--- staging-x86_64/ccrtp.install	                        (rev 0)
+++ staging-x86_64/ccrtp.install	2014-08-12 00:31:46 UTC (rev 219593)
@@ -0,0 +1,22 @@
+infodir=usr/share/info
+filelist=(ccrtp.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:




More information about the arch-commits mailing list