summaryrefslogtreecommitdiff
path: root/community/liboggz/PKGBUILD
blob: a59a76743dca421ba542484e1e9913340390533a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# $Id: PKGBUILD 66071 2012-02-22 22:11:00Z 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=2
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}/etc/bash_completion.d/oggz"
}