-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- changed: now flushes the output of job message without buffering, useful for live monitoring and reading stdout the moment it is written - new: added a "PKGBUILD" for use with `pacman`, can be used to generate an Archlinux package
- Loading branch information
1 parent
bb8a118
commit 8075b8c
Showing
4 changed files
with
86 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Maintainer: Tuncay <[email protected]> | ||
pkgname=tochd | ||
pkgver=0.9 | ||
pkgrel=1 | ||
pkgdesc="Convert game ISO and archives to CD CHD for emulation." | ||
arch=('any') | ||
url="https://github.com/thingsiplay/tochd" | ||
license=('MIT') | ||
depends=('python3' 'p7zip' 'mame-tools') | ||
source=("$pkgname-$pkgver.tar.gz::https://github.com/thingsiplay/$pkgname/archive/refs/tags/v$pkgver.tar.gz") | ||
noextract=('Makefile' 'install.sh' 'uninstall.sh') | ||
|
||
sha256sums=('3ea72f97182c6696c52503814cc16c61f33027b4534bc2d1bed39d688e57163c') | ||
|
||
check() { | ||
cd "$pkgname-$pkgver" | ||
python3 "$pkgname.py" --version | ||
} | ||
|
||
package() { | ||
cd "$pkgname-$pkgver" | ||
mkdir -p "$pkgdir/usr/local/bin" | ||
install -m 755 -T "$pkgname.py" "$pkgdir/usr/local/bin/${pkgname%%.*}" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters