summaryrefslogtreecommitdiff
path: root/community/libcuefile/PKGBUILD
blob: 8b76427e6907240d00ee283f7ef3d078f7b05440 (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
# Maintainer: Corrado Primier <bardo@aur.archlinux.org>
pkgname=libcuefile
pkgver=453
pkgrel=1
pkgdesc="A library to work with CUE files"
arch=('i686' 'x86_64')
url="http://www.musepack.net/index.php?pg=src"
license=('LGPL')
depends=('glibc')
makedepends=('cmake')
source=(http://files.musepack.net/source/${pkgname}_r${pkgver}.tar.gz)
md5sums=('59826363984c51546258fe4213beb272')

build() {
  mkdir "${srcdir}/${pkgname}_r${pkgver}/build"
  cd "${srcdir}/${pkgname}_r${pkgver}/build"

  cmake -DCMAKE_INSTALL_PREFIX=/usr ..
  make DESTDIR="${pkgdir}/" install

  mkdir -p "${pkgdir}/usr/include/cuetools"
  install -Dm644 ${srcdir}/${pkgname}_r${pkgver}/include/cuetools/{cd,cdtext,cuefile}.h \
    ${pkgdir}/usr/include/cuetools
}

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