diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-10-28 11:35:50 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-10-28 11:35:50 -0300 |
commit | 8856e6fe26ce35b4caf6beeac324f583ec1b6133 (patch) | |
tree | c42a03e2b7610a39d167af36357607399aa40045 /community/libcuefile/PKGBUILD | |
parent | 5100458465d1ed420073c3213349bf430075ddbc (diff) | |
parent | 0424b5fc47f106db6498c4cda3476e1d49fe0f82 (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
community/esmtp/PKGBUILD
community/geany-plugins/PKGBUILD
community/giggle/PKGBUILD
community/guichan/PKGBUILD
community/mxml/PKGBUILD
community/ruby-gtk2/PKGBUILD
core/libtool/PKGBUILD
core/mkinitcpio-busybox/PKGBUILD
core/udev/PKGBUILD
extra/audacious/PKGBUILD
extra/conky/PKGBUILD
extra/gnome-control-center/PKGBUILD
extra/gtk2/PKGBUILD
extra/gtk3/PKGBUILD
extra/gvfs/PKGBUILD
extra/kdeutils/PKGBUILD
extra/kino/PKGBUILD
extra/mkvtoolnix/PKGBUILD
extra/poppler/PKGBUILD
extra/postfix/PKGBUILD
extra/pulseaudio/PKGBUILD
extra/qtcurve-gtk2/PKGBUILD
extra/transmission/PKGBUILD
extra/xfburn/PKGBUILD
extra/xfce4-xkb-plugin/PKGBUILD
extra/xorg-server/PKGBUILD
extra/yelp/PKGBUILD
kde-unstable/calligra/PKGBUILD
multilib/lib32-gtk2/PKGBUILD
multilib/lib32-libpulse/PKGBUILD
multilib/libtool-multilib/PKGBUILD
multilib/wine/PKGBUILD
multilib/wine/wine.install
Diffstat (limited to 'community/libcuefile/PKGBUILD')
-rw-r--r-- | community/libcuefile/PKGBUILD | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/community/libcuefile/PKGBUILD b/community/libcuefile/PKGBUILD index fa9ae5ac0..7d20e122b 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' 'mips64el') 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: |