From 415856bdd4f48ab4f2732996f0bae58595092bbe Mon Sep 17 00:00:00 2001 From: Parabola Date: Tue, 5 Apr 2011 14:26:38 +0000 Subject: Tue Apr 5 14:26:38 UTC 2011 --- community/bin2iso/PKGBUILD | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 community/bin2iso/PKGBUILD (limited to 'community/bin2iso/PKGBUILD') diff --git a/community/bin2iso/PKGBUILD b/community/bin2iso/PKGBUILD new file mode 100644 index 000000000..8c2e2b7a9 --- /dev/null +++ b/community/bin2iso/PKGBUILD @@ -0,0 +1,27 @@ +# $Id: PKGBUILD 21845 2010-07-17 17:50:15Z dgriffiths $ +# Contributer: Benjamin Andresen +# Contributor: Thomas Baechler +# Maintainer: Daniel J Griffiths + +pkgname=bin2iso +pkgver=1.9b +_dlver=${pkgver/./} +pkgrel=2 +pkgdesc="bin2iso converts RAW format (.bin/.cue) files to ISO/WAV format" +arch=('i686' 'x86_64') +url="http://users.eastlink.ca/~doiron/bin2iso/" +license=('GPL') +depends=('glibc') +source=(http://users.eastlink.ca/~doiron/${pkgname}/linux/${pkgname}${_dlver}_linux.c) +md5sums=('01dab72496175a772bcf6e08c854d440') + +build() { + /bin/true +} + +package() { + cd ${srcdir} + [ -z "$CC" ] && CC=gcc + $CC $CFLAGS -Wall -o ${pkgname} ${pkgname}${_dlver}_linux.c || return 1 + install -D -m 755 ${pkgname} ${pkgdir}/usr/bin/${pkgname} +} -- cgit v1.2.3-54-g00ecf