summaryrefslogtreecommitdiff
path: root/community/libcuefile
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2011-10-22 23:14:45 +0000
committerroot <root@rshg054.dnsready.net>2011-10-22 23:14:45 +0000
commit789905b5e6b809a564832ba85b842988405e7375 (patch)
tree8860d5a0050d0c61684cba3cee03490ad01316c1 /community/libcuefile
parentd3d0811e23787b5c66edf94b3351a1555eb5010f (diff)
Sat Oct 22 23:14:45 UTC 2011
Diffstat (limited to 'community/libcuefile')
-rw-r--r--community/libcuefile/PKGBUILD17
1 files changed, 12 insertions, 5 deletions
diff --git a/community/libcuefile/PKGBUILD b/community/libcuefile/PKGBUILD
index 8b76427e6..92654aec4 100644
--- a/community/libcuefile/PKGBUILD
+++ b/community/libcuefile/PKGBUILD
@@ -1,26 +1,33 @@
+# $Id: PKGBUILD 57124 2011-10-22 02:51:18Z ebelanger $
# Maintainer: Corrado Primier <bardo@aur.archlinux.org>
+
pkgname=libcuefile
-pkgver=453
+pkgver=475
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')
+license=('GPL2')
depends=('glibc')
makedepends=('cmake')
source=(http://files.musepack.net/source/${pkgname}_r${pkgver}.tar.gz)
-md5sums=('59826363984c51546258fe4213beb272')
+md5sums=('1a6ac52e1080fd54f0f59372345f1e4e')
build() {
mkdir "${srcdir}/${pkgname}_r${pkgver}/build"
cd "${srcdir}/${pkgname}_r${pkgver}/build"
cmake -DCMAKE_INSTALL_PREFIX=/usr ..
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}_r${pkgver}/build"
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
+ install -Dm644 "${srcdir}"/${pkgname}_r${pkgver}/include/cuetools/{cd,cdtext,cuefile}.h \
+ "${pkgdir}/usr/include/cuetools"
}
# vim:set ts=2 sw=2 et: