update to v0.2.1
This commit is contained in:
10
.SRCINFO
10
.SRCINFO
@@ -1,10 +1,11 @@
|
|||||||
pkgbase = windows2usb
|
pkgbase = windows2usb
|
||||||
pkgdesc = Windows 7/8/8.1/10 ISO to Flash Drive burning utility for Linux (MBR/GPT, BIOS/UEFI, FAT32/NTFS)
|
pkgdesc = Windows 7/8/8.1/10 ISO to Flash Drive burning utility for Linux (MBR/GPT, BIOS/UEFI, FAT32/NTFS)
|
||||||
pkgver = 0.2
|
pkgver = 0.2.1
|
||||||
pkgrel = 1
|
pkgrel = 1
|
||||||
url = https://github.com/ValdikSS/windows2usb
|
url = https://github.com/ValdikSS/windows2usb
|
||||||
arch = any
|
arch = any
|
||||||
license = Apache
|
license = Apache
|
||||||
|
makedepends = git
|
||||||
depends = bash
|
depends = bash
|
||||||
depends = awk
|
depends = awk
|
||||||
depends = ntfs-3g
|
depends = ntfs-3g
|
||||||
@@ -13,10 +14,9 @@ pkgbase = windows2usb
|
|||||||
depends = p7zip
|
depends = p7zip
|
||||||
depends = ms-sys
|
depends = ms-sys
|
||||||
depends = wimlib
|
depends = wimlib
|
||||||
conflicts = windows2usb-git
|
source = git+https://github.com/ValdikSS/windows2usb.git#tag=0.2.1
|
||||||
source = git+https://github.com/ValdikSS/windows2usb.git#tag=0.2
|
source = https://github.com/pbatard/rufus/raw/v3.18/res/uefi/uefi-ntfs.img
|
||||||
source = https://github.com/pbatard/rufus/raw/v3.15/res/uefi/uefi-ntfs.img
|
|
||||||
sha512sums = SKIP
|
sha512sums = SKIP
|
||||||
sha512sums = 7413f02754e810c00bc59822314a34ec74663d6dfc441605ea8cd90cc0717db99953b32f30c1bac1b437ea9d3eabeaa7fd171497817642bb1abd728fb2c5290b
|
sha512sums = bfdf696ffc967e93aebdd480b40a585e6d03b5660fd07ab9b06bfad6279e0b7f8e371b3c1d9081779721c1085faf86657bbc9003a7cb35b459f36e68743f3850
|
||||||
|
|
||||||
pkgname = windows2usb
|
pkgname = windows2usb
|
||||||
|
27
PKGBUILD
27
PKGBUILD
@@ -1,27 +1,22 @@
|
|||||||
# Maintainer: K900 <me@0upti.me>
|
# Maintainer: Mohammadreza Abdollahzadeh <morealaz[at]gmail[dot]com>
|
||||||
|
# Contributor: K900 <me@0upti.me>
|
||||||
pkgname=windows2usb
|
pkgname=windows2usb
|
||||||
pkgver=0.2
|
pkgver=0.2.1
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
|
|
||||||
pkgdesc="Windows 7/8/8.1/10 ISO to Flash Drive burning utility for Linux (MBR/GPT, BIOS/UEFI, FAT32/NTFS)"
|
pkgdesc="Windows 7/8/8.1/10 ISO to Flash Drive burning utility for Linux (MBR/GPT, BIOS/UEFI, FAT32/NTFS)"
|
||||||
arch=("any")
|
arch=("any")
|
||||||
url="https://github.com/ValdikSS/windows2usb"
|
url="https://github.com/ValdikSS/windows2usb"
|
||||||
license=("Apache")
|
license=("Apache")
|
||||||
|
|
||||||
depends=("bash" "awk" "ntfs-3g" "dosfstools" "util-linux" "p7zip" "ms-sys" "wimlib")
|
depends=("bash" "awk" "ntfs-3g" "dosfstools" "util-linux" "p7zip" "ms-sys" "wimlib")
|
||||||
|
makedepends=("git")
|
||||||
|
|
||||||
conflicts=("windows2usb-git")
|
source=("git+https://github.com/ValdikSS/windows2usb.git#tag=${pkgver}"
|
||||||
|
"https://github.com/pbatard/rufus/raw/v3.18/res/uefi/uefi-ntfs.img")
|
||||||
source=(
|
sha512sums=('SKIP'
|
||||||
"git+https://github.com/ValdikSS/windows2usb.git#tag=${pkgver}"
|
'bfdf696ffc967e93aebdd480b40a585e6d03b5660fd07ab9b06bfad6279e0b7f8e371b3c1d9081779721c1085faf86657bbc9003a7cb35b459f36e68743f3850')
|
||||||
"https://github.com/pbatard/rufus/raw/v3.15/res/uefi/uefi-ntfs.img"
|
|
||||||
)
|
|
||||||
sha512sums=(
|
|
||||||
"SKIP"
|
|
||||||
"7413f02754e810c00bc59822314a34ec74663d6dfc441605ea8cd90cc0717db99953b32f30c1bac1b437ea9d3eabeaa7fd171497817642bb1abd728fb2c5290b"
|
|
||||||
)
|
|
||||||
|
|
||||||
package() {
|
package() {
|
||||||
install -Dm644 $srcdir/uefi-ntfs.img "$pkgdir/usr/share/$pkgname/uefi-ntfs.img"
|
install -D -t "${pkgdir}/usr/share/${pkgname}/uefi-ntfs.img" -m 644 uefi-ntfs.img
|
||||||
install -Dm755 $srcdir/$pkgname/$pkgname "$pkgdir/usr/bin/$pkgname"
|
install -D -t "${pkgdir}/usr/bin/" -m 755 ${pkgname}/${pkgname}
|
||||||
}
|
}
|
||||||
|
# vim: ts=4 sw=4:
|
||||||
|
Reference in New Issue
Block a user