mirror of
https://github.com/archlinux/aur.git
synced 2026-03-05 13:42:38 +01:00
mcpatcher 1.1.12_02 and rewrite
This commit is contained in:
parent
2df5124fe7
commit
bf4b4fd30a
2 changed files with 15 additions and 16 deletions
10
.SRCINFO
10
.SRCINFO
|
|
@ -1,16 +1,16 @@
|
|||
pkgbase = mcpatcher
|
||||
pkgdesc = Minecraft patcher to fix textures with higher than default resolution
|
||||
pkgver = 1.1.9_02
|
||||
pkgrel = 1
|
||||
pkgver = 1.1.12_02
|
||||
pkgrel = 2
|
||||
url = https://github.com/pclewis/mcpatcher
|
||||
arch = any
|
||||
license = custom
|
||||
license = Public Domain
|
||||
depends = java-runtime
|
||||
optdepends = minecraft: the game itself
|
||||
source = mcpatcher
|
||||
source = https://github.com/downloads/pclewis/mcpatcher/mcpatcher-1.1.9_02.jar
|
||||
source = https://github.com/downloads/pclewis/mcpatcher/mcpatcher-1.1.12_02.jar
|
||||
md5sums = 38358254be76dc84676509f43be44938
|
||||
md5sums = c54992d79898ec65dc1b003ade57c2c8
|
||||
md5sums = 953fd78ff5efba84127e10ef71f34399
|
||||
|
||||
pkgname = mcpatcher
|
||||
|
||||
|
|
|
|||
21
PKGBUILD
21
PKGBUILD
|
|
@ -1,25 +1,24 @@
|
|||
# Maintainer: Constantin Schomburg <me at xconstruct dot net>
|
||||
# Maintainer: Constantin Schomburg <me@ xconstruct.net>
|
||||
|
||||
pkgname=mcpatcher
|
||||
pkgver='1.1.9_02'
|
||||
pkgrel=1
|
||||
pkgver='1.1.12_02'
|
||||
pkgrel=2
|
||||
pkgdesc="Minecraft patcher to fix textures with higher than default resolution"
|
||||
arch=('any')
|
||||
license=('custom')
|
||||
license=('Public Domain')
|
||||
url="https://github.com/pclewis/mcpatcher"
|
||||
depends=('java-runtime')
|
||||
optdepends=('minecraft: the game itself')
|
||||
source=(mcpatcher https://github.com/downloads/pclewis/mcpatcher/mcpatcher-$pkgver.jar)
|
||||
source=(mcpatcher
|
||||
https://github.com/downloads/pclewis/mcpatcher/mcpatcher-$pkgver.jar)
|
||||
md5sums=('38358254be76dc84676509f43be44938'
|
||||
'c54992d79898ec65dc1b003ade57c2c8')
|
||||
'953fd78ff5efba84127e10ef71f34399')
|
||||
|
||||
build() {
|
||||
cd "$srcdir" || return 1
|
||||
cd "$srcdir"
|
||||
|
||||
mkdir -p $pkgdir/usr/bin
|
||||
cp mcpatcher $pkgdir/usr/bin
|
||||
mkdir -p $pkgdir/usr/share/mcpatcher
|
||||
cp mcpatcher-$pkgver.jar $pkgdir/usr/share/mcpatcher/mcpatcher.jar
|
||||
install -vDm755 "mcpatcher" "$pkgdir/usr/bin/mcpatcher"
|
||||
install -vDm644 "mcpatcher-$pkgver.jar" "$pkgdir/usr/share/mcpatcher/mcpatcher.jar"
|
||||
}
|
||||
|
||||
# vim:set ts=4 sw=4 et:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue