PKGBUILDs/community/cdck/PKGBUILD

26 lines
697 B
Bash
Raw Normal View History

2009-10-10 02:15:33 +00:00
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
# Maintainer: Abhishek Dasgupta <abhidg@gmail.com>
# Previous Maintainer: Shinlun Hsieh <yngwiexx@yahoo.com.tw>
# Contributor: Slash <demodevil5[at]yahoo[dot]com>
pkgname=cdck
pkgver=0.7.0
pkgrel=2
pkgdesc="A simple program to verify CD/DVD quality"
arch=('i686' 'x86_64')
url="http://swaj.net/unix/"
license=('GPL')
depends=(gcc-libs)
makedepends=('perl')
options=('!libtool')
source=(http://swaj.net/unix/cdck/${pkgname}-${pkgver}.tar.gz)
md5sums=('15029d54b99f2e5cf8aae28077669d3f')
build() {
cd "$srcdir/${pkgname}-${pkgver}"
./configure --prefix=/usr --mandir=/usr/share/man
make || return 1
make DESTDIR="$pkgdir" install
}