summaryrefslogtreecommitdiff
path: root/community/mpck
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-07-19 01:10:32 -0700
committerroot <root@rshg054.dnsready.net>2013-07-19 01:10:32 -0700
commit8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch)
tree03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/mpck
parente445a313723389ba9ee1fded025c567dae5b21ea (diff)
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/mpck')
-rw-r--r--community/mpck/PKGBUILD27
1 files changed, 27 insertions, 0 deletions
diff --git a/community/mpck/PKGBUILD b/community/mpck/PKGBUILD
new file mode 100644
index 000000000..a1b381592
--- /dev/null
+++ b/community/mpck/PKGBUILD
@@ -0,0 +1,27 @@
+# $Id: PKGBUILD 81980 2013-01-05 08:44:35Z giovanni $
+# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
+# Contributor: damir <damir@archlinux.org>
+
+pkgname=mpck
+pkgver=0.19
+pkgrel=2
+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
+}
+
+package() {
+ cd "${srcdir}/checkmate-${pkgver}"
+
+ make prefix="${pkgdir}/usr" install
+}