updated on Mon Jan 16 04:00:32 UTC 2012
[aur-mirror.git] / aucdtect / PKGBUILD
blob3546e9a542d6ae6c80b87a1756c07f9b3b6e0a87
1 # Maintainer: Anton Larionov <wanton dot clarion at gmail dot com>
2 # Previous versions you can find here: http://github.com/wanton/pkgbuilds
4 pkgname=aucdtect
5 pkgver=0.8.2
6 pkgrel=1
7 pkgdesc="Free console program for determining the authenticity of musical CDs, stored in WAV format."
8 arch=('i686' 'x86_64')
9 url="http://en.true-audio.com/"
10 license=('unknown')
12 if [ "$CARCH" == "i686" ]; then
13     depends=('lib-compat')
14 else
15     depends=('lib32-lib-compat')
18 source=("http://www.true-audio.com/ftp/${pkgname}-${pkgver}.tgz")
19 md5sums=('a8fa7e9940dbdd190399a3593efce291')
21 build() {
22         
23         install -D -m755 "${srcdir}/${pkgname}-${pkgver}/auCDtect" "${pkgdir}/usr/bin/${pkgname}"
24         install -dm755 "${pkgdir}/usr/share/doc/${pkgname}"
25         install -m644 "${srcdir}/${pkgname}-${pkgver}/Readme" "${pkgdir}/usr/share/doc/${pkgname}"
29 # vim:set ts=2 sw=2 et: