summaryrefslogtreecommitdiff
path: root/extra/mpck
diff options
context:
space:
mode:
authorNicolas Reynolds <fauno@kiwwwi.com.ar>2011-12-02 13:37:59 -0300
committerNicolas Reynolds <fauno@kiwwwi.com.ar>2011-12-02 13:37:59 -0300
commit3383a1fbd954b78716dd8ff9d9f2097e176d2279 (patch)
tree68aa3acbd50e6d0d7bdcfa2947d1772f7edb8a0d /extra/mpck
parent7f3d7e2203a9252280361a1d095528cb056d08dc (diff)
parent9e9ab642711f2424f828e21d14b98c45cdef2b29 (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community-testing/packagekit/PKGBUILD community/liboglappth/PKGBUILD community/texvc/PKGBUILD extra/libvdpau/PKGBUILD extra/minicom/PKGBUILD extra/muparser/PKGBUILD extra/netkit-bsd-finger/PKGBUILD extra/normalize/PKGBUILD
Diffstat (limited to 'extra/mpck')
-rw-r--r--extra/mpck/PKGBUILD15
1 files changed, 10 insertions, 5 deletions
diff --git a/extra/mpck/PKGBUILD b/extra/mpck/PKGBUILD
index 7348256f4..aa701f30c 100644
--- a/extra/mpck/PKGBUILD
+++ b/extra/mpck/PKGBUILD
@@ -1,22 +1,27 @@
-# $Id: PKGBUILD 68070 2010-02-10 17:08:28Z giovanni $
+# $Id: PKGBUILD 143907 2011-11-30 20:27:25Z giovanni $
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
# Contributor: damir <damir@archlinux.org>
pkgname=mpck
pkgver=0.19
-pkgrel=1
+pkgrel=2
license=('GPL')
pkgdesc="Reads MP3 files and tries to determine if they are correct"
arch=('i686' 'x86_64' 'mips64el')
url="http://checkmate.gissen.nl/"
depends=('glibc')
-source=(http://checkmate.gissen.nl/checkmate-${pkgver}.tar.gz)
+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
+ make
+}
+
+package() {
+ cd "${srcdir}/checkmate-${pkgver}"
+
+ make prefix="${pkgdir}/usr" install
}