blob: 65a6a2799d4ac2309ccb3899daae56cb6d809c45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# $Id: PKGBUILD 68070 2010-02-10 17:08:28Z giovanni $
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
# Contributor: damir <damir@archlinux.org>
pkgname=mpck
pkgver=0.19
pkgrel=1
license=('GPL')
pkgdesc="Reads MP3 files and tries to determine if they are correct"
arch=('i686' 'x86_64')
url="http://checkmate.gissen.nl/"
depends=('glibc')
source=(http://checkmate.gissen.nl/checkmate-${pkgver}.tar.gz)
md5sums=('f72114b0982a101b68ddeb65f99b84f7')
build() {
cd "${srcdir}/checkmate-${pkgver}"
./configure --prefix=/usr
make || return 1
make prefix="${pkgdir}/usr" install || return 1
}
|