summaryrefslogtreecommitdiff
path: root/community/bin2iso/PKGBUILD
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/bin2iso/PKGBUILD
parente445a313723389ba9ee1fded025c567dae5b21ea (diff)
Fri Jul 19 01:09:18 PDT 2013
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: