Skip to content

Commit

Permalink
Rename application to WoeUSB
Browse files Browse the repository at this point in the history
Signed-off-by: 林博仁 <[email protected]>
  • Loading branch information
brlin-tw committed Jun 12, 2017
1 parent e65ab49 commit f859b41
Show file tree
Hide file tree
Showing 40 changed files with 337 additions and 319 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Git Tracking Ignore Rules
## Debian package build generated files
debian/winusb*
debian/woeusb*
debian/files

## Files generated by Autoconf
Expand Down
31 changes: 16 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
# WinUSB+
[![Latest Release](https://img.shields.io/github/release/slacka/WinUSBplus.svg)](https://github.com/slacka/WinUSBplus/releases)
[![WinUSB+ License](https://img.shields.io/badge/license-gpl-blue.svg)](https://github.com/slacka/WinUSBplus/blob/master/COPYING)
# WoeUSB
[![Latest Release](https://img.shields.io/github/release/slacka/WoeUSB.svg)](https://github.com/slacka/WoeUSB/releases)
[![WoeUSB License](https://img.shields.io/badge/license-gpl-blue.svg)](https://github.com/slacka/WoeUSB/blob/master/COPYING)
[![Build Status](https://travis-ci.org/slacka/WoeUSB.svg?branch=master)](https://travis-ci.org/slacka/WoeUSB)

<img src="src/data/winusb+-logo.png" align="right" />
<img src="src/data/woeusb-logo.png" align="right" />
_A Linux program to create Windows USB stick installer from a real Windows DVD or an image._

This package contains two programs:

* winusbgui: a simple tool that enable you to create
* woeusbgui: a simple tool that enable you to create
your own usb stick windows installer from iso image
or a real DVD.
* winusb: the command line tool.
* woeusb: the command line tool.

Supported images:

Expand All @@ -24,10 +25,10 @@ Supported bootmodes:
This project is a fork of [Congelli501's WinUSB software](http://en.congelli.eu/prog_info_winusb.html), which is not maintained since 2012, according to the official website.

## Installation
Following is the instructions to install WinUSB+ if your Linux distro's packaged version is not available or too old.
Following is the instructions to install WoeUSB if your Linux distro's packaged version is not available or too old.

### Acquire WinUSB+'s source code
Clone WinUSB+'s Git repository to local machine using `git clone https://github.com/slacka/WinUSBplus.git`
### Acquire WoeUSB's source code
Clone WoeUSB's Git repository to local machine using `git clone https://github.com/slacka/WoeUSB.git`

NOTE: We no longer support building from source archive provided in the GitHub Releases page as the software version is not set.

Expand All @@ -38,22 +39,22 @@ This step is required for generating proper version name from Git tags, it shoul
$ ./setup-development-environment.bash
```

### Install WinUSB+'s build dependencies
### Install WoeUSB's build dependencies
```shell
# For Ubuntu
$ sudo apt-get install devscripts equivs gdebi-core
$ cd <WinUSB+ source code directory>
$ cd <WoeUSB source code directory>
$ mk-build-deps debian/control # NOTE: Currently due to Debian Bug #679101 this command will fail if source path contains spaces.
$ sudo gdebi winusb-build-deps_<version>_all.deb
$ sudo gdebi woeusb-build-deps_<version>_all.deb

# For Fedora
$ sudo dnf install wxGTK3-devel
```
### Build & install WinUSB+
### Build & install WoeUSB
```shell
# For Ubuntu
$ dpkg-buildpackage -uc -b # NOTE: Currently due to bug in the build system this command will fail if source's path contains space or single quotes, refer issue #84 for details
$ sudo gdebi ../winusb+_<version>_<architecture>.deb
$ sudo gdebi ../woeusb_<version>_<architecture>.deb

# Generic method
$ ./configure
Expand All @@ -62,4 +63,4 @@ $ sudo make install
```

## License
WinUSB+ is sold under the [GPL license](https://github.com/slacka/WinUSBplus/blob/master/COPYING).
WoeUSB is sold under the [GPL license](https://github.com/slacka/WoeUSB/blob/master/COPYING).
Loading

3 comments on commit f859b41

@lurch
Copy link

@lurch lurch commented on f859b41 Jun 14, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I guess you also need to change the description displayed at the top of https://github.com/slacka/WoeUSB - currently it says WinUSB is a simple tool that enable you to create your own usb stick windows installer from an iso image or a real DVD.

@brlin-tw
Copy link
Collaborator Author

@brlin-tw brlin-tw commented on f859b41 Jun 14, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I did notice it, however only @slacka has the privilege to change the description.

@slacka
Copy link
Owner

@slacka slacka commented on f859b41 Jun 21, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Description has been updated.

Please sign in to comment.