Add 'woeusb/' from commit '0a7f900118e4ae4905a4279758a8ee159e68db14'

git-subtree-dir: woeusb
git-subtree-mainline: 4fd4cb85ad
git-subtree-split: 0a7f900118
This commit is contained in:
2019-09-06 12:30:01 +02:00
3 changed files with 59 additions and 0 deletions

21
woeusb/.SRCINFO Normal file
View File

@@ -0,0 +1,21 @@
pkgbase = woeusb
pkgdesc = A Linux program to create Windows USB stick installer from a real Windows DVD or an image
pkgver = 3.3.0
pkgrel = 1
url = https://github.com/slacka/WoeUSB
arch = x86_64
license = GPL3
depends = wxgtk2
depends = grub
depends = dosfstools
depends = parted
depends = wget
depends = ntfs-3g
optdepends = gksu
provides = woeusb-git
conflicts = woeusb-git
source = woeusb-3.3.0.tar.gz::https://github.com/slacka/WoeUSB/archive/v3.3.0.tar.gz
sha256sums = dc0e1a233143a33182339915d043a419c089b8bfb0d3813b17acbff2bdb285bb
pkgname = woeusb

4
woeusb/.gitignore vendored Normal file
View File

@@ -0,0 +1,4 @@
pkg/
src/
*.pkg.tar*
woeusb-*

34
woeusb/PKGBUILD Normal file
View File

@@ -0,0 +1,34 @@
# Maintainer: Giovanni Harting <539@idlegandalf.com>
# Contributor: aimileus <me at aimileus dot nl>
# Contributor: Salvador Pardiñas <darkfm@vera.com.uy>
pkgname=woeusb
pkgver=3.3.0
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')
conflicts=('woeusb-git')
provides=('woeusb-git')
source=("$pkgname-$pkgver.tar.gz::https://github.com/slacka/WoeUSB/archive/v$pkgver.tar.gz")
sha256sums=('dc0e1a233143a33182339915d043a419c089b8bfb0d3813b17acbff2bdb285bb')
prepare() {
cd "WoeUSB-$pkgver"
autoreconf --install
./configure --prefix=/usr
}
build() {
cd "WoeUSB-$pkgver"
make
}
package() {
cd "WoeUSB-$pkgver"
make DESTDIR="$pkgdir/" install
}