diff options
author | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
commit | 8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch) | |
tree | 03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/ccd2iso | |
parent | e445a313723389ba9ee1fded025c567dae5b21ea (diff) |
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/ccd2iso')
-rw-r--r-- | community/ccd2iso/ChangeLog | 3 | ||||
-rw-r--r-- | community/ccd2iso/PKGBUILD | 28 |
2 files changed, 31 insertions, 0 deletions
diff --git a/community/ccd2iso/ChangeLog b/community/ccd2iso/ChangeLog new file mode 100644 index 000000000..811f87d4f --- /dev/null +++ b/community/ccd2iso/ChangeLog @@ -0,0 +1,3 @@ +2007-06-28 tardo <tardo@nagi-fanboi.net> +* Built for x86_64 + diff --git a/community/ccd2iso/PKGBUILD b/community/ccd2iso/PKGBUILD new file mode 100644 index 000000000..c3a56f762 --- /dev/null +++ b/community/ccd2iso/PKGBUILD @@ -0,0 +1,28 @@ +# $Id: PKGBUILD 64917 2012-02-18 20:36:05Z jelle $ +# Contributor: Giovanni Scafora <giovanni@archlinux.org> +# Contributor: Shinlun Hsieh <yngwiexx@yahoo.com.tw> +# Maintainer: Daniel J Griffiths <ghost1227@archlinux.us> + +pkgname=ccd2iso +pkgver=0.3 +pkgrel=7 +pkgdesc="Converts CCD/IMG CloneCD images to ISO format" +arch=('i686' 'x86_64') +url="http://sourceforge.net/projects/ccd2iso" +license=('GPL') +depends=('glibc') +source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz) +md5sums=('a7df1c46cb710f2fc8ebd88c2e64ce65') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + + ./configure --prefix=/usr + make +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + + make DESTDIR=${pkgdir} install +} |