mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
27 lines
924 B
Bash
27 lines
924 B
Bash
# $Id: PKGBUILD 3247 2009-10-01 14:29:26Z dgriffiths $
|
|
# Maintainer: Daniel J Griffiths <ghost1227@archlinux.us>
|
|
# Contributor: Andrea Scarpino <andrea@archlinux.org>
|
|
# Contributor: Wes Brewer <brewerw@gmail.com>
|
|
|
|
pkgname=acetoneiso2
|
|
pkgver=2.1.1
|
|
pkgrel=1
|
|
pkgdesc="An all in one ISO tool (bin mdf nrg img daa dmg cdi b5i bwi pdi iso)"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.acetoneteam.org"
|
|
license=('GPL3')
|
|
depends=('qt>=4' 'fuseiso' 'cdrdao' 'cdrkit' 'gnupg2' 'pinentry' 'mplayer')
|
|
optdepends=("p7zip: for ISO compress/decompress support"
|
|
"dvd+rw-tools: for dvd ISO creation")
|
|
conflicts=('acetoneiso')
|
|
install=$pkgname.install
|
|
source=(http://downloads.sourceforge.net/acetoneiso/AcetoneISO/AcetoneISO%202.1.1//acetoneiso_$pkgver.tar.gz)
|
|
md5sums=('72e41e912e514946152fb9bcac1924b7')
|
|
|
|
build() {
|
|
cd ${srcdir}/acetoneiso_${pkgver}/acetoneiso
|
|
|
|
qmake
|
|
make || return 1
|
|
make INSTALL_ROOT="${pkgdir}" install
|
|
}
|