mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
23 lines
623 B
Bash
23 lines
623 B
Bash
# $Id: PKGBUILD 26250 2009-02-04 15:22:30Z giovanni $
|
|
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
|
|
# Contributor: damir <damir@archlinux.org>
|
|
|
|
pkgname=mpck
|
|
pkgver=0.18
|
|
pkgrel=1
|
|
license=('GPL')
|
|
pkgdesc="Reads MP3 files and tries to determine if they are correct."
|
|
arch=('i686' 'x86_64')
|
|
url="http://mpck.linuxonly.nl/"
|
|
depends=('glibc')
|
|
#source=($url/$pkgname-$pkgver.tar.gz)
|
|
source=("http://checkmate.linuxonly.nl/checkmate-$pkgver.tar.gz")
|
|
|
|
build() {
|
|
cd $srcdir/checkmate-$pkgver
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make prefix=$pkgdir/usr install
|
|
}
|
|
md5sums=('18859cfe468ff69b4e8e7da09ab7c40c')
|
|
|