Initial release

This commit is contained in:
Emiel Wiedijk
2018-06-14 12:56:29 +02:00
commit 859fa25cb0
3 changed files with 55 additions and 0 deletions

20
.SRCINFO Normal file
View File

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

4
.gitignore vendored Normal file
View File

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

31
PKGBUILD Normal file
View File

@@ -0,0 +1,31 @@
# 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
}