32 lines
777 B
Bash
32 lines
777 B
Bash
# Maintainer: aimileus <me at aimileus dot nl>
|
|
# Contributor: Salvador Pardiñas <darkfm@vera.com.uy>
|
|
pkgname=woeusb
|
|
pkgver=3.2.1
|
|
pkgrel=1
|
|
pkgdesc="A Linux program to create Windows USB stick installer from a real Windows DVD or an image"
|
|
arch=('x86_64')
|
|
url="https://github.com/slacka/WoeUSB"
|
|
license=('GPL3')
|
|
depends=('wxgtk2' 'grub' 'dosfstools' 'parted' 'wget' 'ntfs-3g')
|
|
optdepends=('gksu')
|
|
makedepends=('git')
|
|
source=("$pkgname-$pkgver::https://github.com/slacka/WoeUSB/archive/v$pkgver.tar.gz")
|
|
sha256sums=('4016e79892524a29d855fecb7027a680844ae71aff95baf766dce64771c2b930')
|
|
|
|
prepare() {
|
|
cd "WoeUSB-$pkgver"
|
|
autoreconf --install
|
|
}
|
|
|
|
build() {
|
|
cd "WoeUSB-$pkgver"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "WoeUSB-$pkgver"
|
|
make DESTDIR="$pkgdir/" install
|
|
}
|
|
|