* add ccd2iso

This commit is contained in:
Alexander Baldeck 2020-08-31 13:36:09 +02:00
parent 49569e4490
commit b20377aa26
2 changed files with 31 additions and 0 deletions

3
ccd2iso/ChangeLog Normal file
View File

@ -0,0 +1,3 @@
2007-06-28 tardo <tardo@nagi-fanboi.net>
* Built for x86_64

28
ccd2iso/PKGBUILD Normal file
View File

@ -0,0 +1,28 @@
# POWER Maintainer: Alexander Baldeck <alex.bldck@gmail.com>
# 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=10
pkgdesc="Converts CCD/IMG CloneCD images to ISO format"
arch=(x86_64 powerpc64le)
url="https://sourceforge.net/projects/ccd2iso"
license=('GPL')
depends=('glibc')
source=(https://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
}