summaryrefslogtreecommitdiff
path: root/community/libgig/PKGBUILD
blob: 9b9442753b19fd907bf1856b2060e6654c859258 (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
# $Id: PKGBUILD 27577 2010-09-25 09:27:39Z schiv $
# Maintainer: Ray Rashif <schiv@archlinux.org>
# Contributor: svoufff <svoufff at gmail dot com>
# Contributor: Shinlun Hsieh <yngwiexx@yahoo.com.tw>

pkgname=libgig
pkgver=3.3.0
pkgrel=1
pkgdesc="C++ library for loading Gigasampler and DLS files"
arch=(i686 x86_64)
url="http://www.linuxsampler.org/libgig/"
license=('GPL')
depends=('gcc-libs' 'util-linux-ng' 'libsndfile')
options=('!libtool' '!makeflags')
source=(http://download.linuxsampler.org/packages/$pkgname-$pkgver.tar.bz2)
md5sums=('fc33e8e948ed2db9b7003a3ecdb78549')

build() {
  cd "$srcdir/$pkgname-$pkgver"

  ./configure --prefix=/usr
  make
}

package() {
  cd "$srcdir/$pkgname-$pkgver"

  make DESTDIR="$pkgdir/" install
}

# vim:set ts=2 sw=2 et: