2011-08-24 19:44:00 +08:00
|
|
|
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
|
|
|
|
|
|
|
|
pkgname=unetbootin
|
2013-10-25 23:30:31 +08:00
|
|
|
pkgver=585
|
2012-01-05 21:27:02 +08:00
|
|
|
pkgrel=1
|
2011-08-24 19:44:00 +08:00
|
|
|
pkgdesc="Allows the creation of bootable Live USB drives."
|
|
|
|
url="http://unetbootin.sourceforge.net/"
|
|
|
|
license=('GPL3')
|
2013-01-05 03:42:50 +08:00
|
|
|
arch=('x86_64')
|
2012-02-16 20:42:32 +08:00
|
|
|
depends=('kde-runtime' 'libpng' 'mtools' 'p7zip' 'qt' 'syslinux')
|
2012-03-16 22:51:37 +08:00
|
|
|
categories=('system')
|
2012-07-20 08:52:00 +08:00
|
|
|
screenshot=('http://sourceforge.net/dbimage.php?id=300347')
|
2011-08-24 19:44:00 +08:00
|
|
|
# kdebase-runtime is added as dependency so kdesu is used to ask for password.
|
2012-07-20 08:52:00 +08:00
|
|
|
source=("http://downloads.sourceforge.net/$pkgname/$pkgname-source-$pkgver.tar.gz")
|
2013-10-25 23:30:31 +08:00
|
|
|
md5sums=('483cc1c32d93141fe8f6e40dc8798881')
|
2011-08-24 19:44:00 +08:00
|
|
|
|
|
|
|
build() {
|
|
|
|
lupdate $pkgname.pro
|
|
|
|
lrelease $pkgname.pro
|
|
|
|
qmake
|
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
# Executable installation.
|
|
|
|
install -Dm755 $pkgname $pkgdir/usr/bin/$pkgname
|
|
|
|
|
|
|
|
# Translations installation.
|
|
|
|
mkdir -p $pkgdir/usr/share/$pkgname
|
|
|
|
install -m644 $pkgname_*.qm $pkgdir/usr/share/$pkgname/
|
|
|
|
|
|
|
|
# Desktop integration.
|
|
|
|
install -Dm644 $pkgname.desktop $pkgdir/usr/share/applications/$pkgname.desktop
|
|
|
|
install -Dm644 ${pkgname}_48.png $pkgdir/usr/share/pixmaps/$pkgname.png
|
2012-01-05 21:27:02 +08:00
|
|
|
}
|