blob: 216a7ce1d053c08c56f330c331e3ef57729f830a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
pkgname=boot-to-windows
pkgver=1.0.2
pkgrel=1
pkgdesc="boot-to-windows command and .desktop shortcut. Do grub-reboot into Windows"
arch=('x86_64')
license=('unknown')
source=("boot-to-windows.desktop"
"boot-to-windows.sh")
sha256sums=("SKIP"
"SKIP")
package(){
install -Dm755 "$srcdir/$pkgname.sh" "$pkgdir/usr/bin/$pkgname"
install -Dm644 "$srcdir/$pkgname.desktop" "$pkgdir/usr/share/applications/$pkgname.desktop"
}
|