summaryrefslogtreecommitdiff
path: root/community/liboggz
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/liboggz
parent0ade1da67addf154d93c6a6399b0a3d5a18a3336 (diff)
Sun Aug 11 01:21:31 PDT 2013
Diffstat (limited to 'community/liboggz')
-rw-r--r--community/liboggz/PKGBUILD36
1 files changed, 0 insertions, 36 deletions
diff --git a/community/liboggz/PKGBUILD b/community/liboggz/PKGBUILD
deleted file mode 100644
index 01aec1fc9..000000000
--- a/community/liboggz/PKGBUILD
+++ /dev/null
@@ -1,36 +0,0 @@
-# $Id: PKGBUILD 68273 2012-03-21 06:40:28Z giovanni $
-# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
-# Contributor: Vincent Cappe <vcappe at gmail dot com>
-# Contributor: Jeff Bailes <thepizzaking at gmail dot com>
-# Contributor: SpepS <dreamspepser at yahoo dot it>
-
-pkgname=liboggz
-pkgver=1.1.1
-pkgrel=3
-pkgdesc="A simple programming interface for reading and writing Ogg files and streams"
-arch=('i686' 'x86_64')
-url="http://www.xiph.org/oggz/"
-license=('custom:BSD')
-depends=('libogg' 'sh')
-makedepends=('doxygen' 'pkg-config')
-options=('!libtool')
-source=("http://downloads.xiph.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz")
-md5sums=('3649a657f8e368b881ba8b1b57381ff7')
-
-build() {
- cd "${srcdir}/${pkgname}-${pkgver}"
-
- ./configure --prefix=/usr \
- --enable-static=no
- make
-}
-
-package() {
- cd "${srcdir}/${pkgname}-${pkgver}"
-
- make DESTDIR="${pkgdir}" install
- # license
- install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
- # bash completion
- install -Dm644 bash-completion/oggz "${pkgdir}/usr/share/bash-completion/completions/oggz"
-}