diff --git a/woeusb/.SRCINFO b/woeusb/.SRCINFO new file mode 100644 index 0000000..b0a1d3f --- /dev/null +++ b/woeusb/.SRCINFO @@ -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 + diff --git a/woeusb/.gitignore b/woeusb/.gitignore new file mode 100644 index 0000000..2e3e85e --- /dev/null +++ b/woeusb/.gitignore @@ -0,0 +1,4 @@ +pkg/ +src/ +*.pkg.tar* +woeusb-* diff --git a/woeusb/PKGBUILD b/woeusb/PKGBUILD new file mode 100644 index 0000000..cafa8df --- /dev/null +++ b/woeusb/PKGBUILD @@ -0,0 +1,34 @@ +# Maintainer: Giovanni Harting <539@idlegandalf.com> +# Contributor: aimileus +# Contributor: Salvador PardiƱas + +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 +} +