first commit
This commit is contained in:
21
.SRCINFO
Normal file
21
.SRCINFO
Normal file
@@ -0,0 +1,21 @@
|
||||
pkgbase = windows2usb
|
||||
pkgdesc = Windows 7/8/8.1/10 ISO to Flash Drive burning utility for Linux (MBR/GPT, BIOS/UEFI, FAT32/NTFS)
|
||||
pkgver = 0.1.6
|
||||
pkgrel = 1
|
||||
url = https://github.com/ValdikSS/windows2usb
|
||||
arch = any
|
||||
license = Apache
|
||||
depends = bash
|
||||
depends = awk
|
||||
depends = ntfs-3g
|
||||
depends = dosfstools
|
||||
depends = util-linux
|
||||
depends = p7zip
|
||||
depends = ms-sys
|
||||
source = git+https://github.com/ValdikSS/windows2usb.git#tag=0.1.6
|
||||
source = https://github.com/pbatard/rufus/raw/master/res/uefi/uefi-ntfs.img
|
||||
sha512sums = SKIP
|
||||
sha512sums = 139be9b1db2fa227590a26b15a380e1fa5855436521db7365953d80d8ec3935fb427248c5de8ed5f90846f4b3946d7bdb6cdab326a2016d8d51721e612b70c9b
|
||||
|
||||
pkgname = windows2usb
|
||||
|
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
pkg/
|
||||
src/
|
||||
windows2usb/
|
||||
uefi-ntfs.img
|
||||
*.pkg.tar*
|
25
PKGBUILD
Normal file
25
PKGBUILD
Normal file
@@ -0,0 +1,25 @@
|
||||
# Maintainer: K900 <me@0upti.me>
|
||||
pkgname=windows2usb
|
||||
pkgver=0.1.6
|
||||
pkgrel=1
|
||||
|
||||
pkgdesc="Windows 7/8/8.1/10 ISO to Flash Drive burning utility for Linux (MBR/GPT, BIOS/UEFI, FAT32/NTFS)"
|
||||
arch=("any")
|
||||
url="https://github.com/ValdikSS/windows2usb"
|
||||
license=("Apache")
|
||||
|
||||
depends=("bash" "awk" "ntfs-3g" "dosfstools" "util-linux" "p7zip" "ms-sys")
|
||||
|
||||
source=(
|
||||
"git+https://github.com/ValdikSS/windows2usb.git#tag=${pkgver}"
|
||||
"https://github.com/pbatard/rufus/raw/master/res/uefi/uefi-ntfs.img"
|
||||
)
|
||||
sha512sums=(
|
||||
"SKIP"
|
||||
"139be9b1db2fa227590a26b15a380e1fa5855436521db7365953d80d8ec3935fb427248c5de8ed5f90846f4b3946d7bdb6cdab326a2016d8d51721e612b70c9b"
|
||||
)
|
||||
|
||||
package() {
|
||||
install -Dm644 $srcdir/uefi-ntfs.img "$pkgdir/usr/share/$pkgname/uefi-ntfs.img"
|
||||
install -Dm755 $srcdir/$pkgname/$pkgname "$pkgdir/usr/bin/$pkgname"
|
||||
}
|
Reference in New Issue
Block a user