mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
40 lines
1.2 KiB
Bash
40 lines
1.2 KiB
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
# (c) 2010 Drake Justice
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=acetoneiso2
|
|
pkgver=2.3
|
|
pkgrel=2
|
|
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' 'phonon')
|
|
optdepends=("p7zip: for ISO compress/decompress support"
|
|
"dvd+rw-tools: for dvd ISO creation")
|
|
conflicts=('acetoneiso')
|
|
categories=('utils')
|
|
install=${pkgname}.install
|
|
source=(http://downloads.sourceforge.net/acetoneiso/AcetoneISO/AcetoneISO%202.3/acetoneiso_${pkgver}.tar.gz)
|
|
md5sums=('225f7af687016690ff28b9771a1ce179')
|
|
|
|
build() {
|
|
cd ${srcdir}/acetoneiso_${pkgver}/acetoneiso
|
|
|
|
qmake
|
|
sed -i 's|-I/usr/include/QtCore|-I/usr/include/QtCore -I/usr/include/KDE|' Makefile
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/acetoneiso_${pkgver}/acetoneiso
|
|
|
|
make INSTALL_ROOT="${pkgdir}" install
|
|
}
|