summaryrefslogtreecommitdiff
path: root/community/bin2iso/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/bin2iso/PKGBUILD')
-rw-r--r--community/bin2iso/PKGBUILD28
1 files changed, 28 insertions, 0 deletions
diff --git a/community/bin2iso/PKGBUILD b/community/bin2iso/PKGBUILD
new file mode 100644
index 000000000..cfd4f7098
--- /dev/null
+++ b/community/bin2iso/PKGBUILD
@@ -0,0 +1,28 @@
+# $Id: PKGBUILD 67258 2012-03-05 22:50:06Z arodseth $
+# Maintainer: Jelle van der Waa <jelle@vdwaa.nl>
+# Contributor: Benjamin Andresen <benny@klapmuetz.org>
+# Contributor: Thomas Baechler <thomas.baechler@rwth-aachen.de>
+# Contributor: Daniel J Griffiths <ghost1227@archlinux.us>
+# Contributor: Alexander Rødseth <rodseth@gmail.com>
+
+pkgname=bin2iso
+pkgver=1.9b
+_dlver=${pkgver/./}
+pkgrel=3
+pkgdesc="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")
+sha256sums=('1e8a6ae79e91325acd50f3a0e506edf4d8cb57b72d1dcfd8b276a04aff82e43d')
+
+package() {
+ cd "$srcdir"
+
+ [ -z "$CC" ] && CC=gcc
+ $CC $CFLAGS -Wall -o "$pkgname" "$pkgname${_dlver}_linux.c"
+ install -Dm755 "$pkgname" "$pkgdir/usr/bin/$pkgname"
+}
+
+# vim:set ts=2 sw=2 et: