WoeUSB: fix version, dependencies, split cli

GUI version is not necessary in most case, and upstream recommend using
cli tools instead.
This commit is contained in:
Đoàn Trần Công Danh 2020-04-12 13:26:04 +07:00 committed by Piotr
parent e3a3d547a4
commit 0fec30a315
2 changed files with 19 additions and 2 deletions

1
srcpkgs/WoeUSB-cli Symbolic link
View file

@ -0,0 +1 @@
WoeUSB

View file

@ -1,12 +1,12 @@
# Template file for 'WoeUSB'
pkgname=WoeUSB
version=3.3.1
revision=1
revision=2
build_style=gnu-configure
configure_args="--with-wx-config=wx-config-gtk3"
hostmakedepends="automake gettext libtool"
makedepends="wxWidgets-gtk3-devel"
depends="grub ntfs-3g parted wget"
depends="WoeUSB-cli"
short_desc="Create a Windows USB stick installer from a real Windows DVD or image"
maintainer="bra1nwave <bra1nwave@protonmail.com>"
license="GPL-3.0-or-later"
@ -14,6 +14,22 @@ homepage="https://github.com/slacka/WoeUSB"
distfiles="https://github.com/slacka/WoeUSB/archive/v${version}.tar.gz"
checksum=0cab88a1113506f39d2f1c19532b2cd8d968c6a9f59129953c000e29e73f3d4f
post_patch() {
vsed -i -e "s/@@WOEUSB_VERSION@@/$version/g" \
configure.ac \
src/woeusb src/woeusb.1 src/woeusbgui.1
}
pre_configure() {
autoreconf -fi
}
WoeUSB-cli_package() {
archs=noarch
depends="bash grub ntfs-3g parted wget"
short_desc+=" - command line only"
pkg_install() {
vmove usr/bin/woeusb
vmove usr/share/man/man1/woeusb.1
}
}