mirror of
https://github.com/archlinux/aur.git
synced 2026-03-06 22:42:50 +01:00
26 lines
826 B
Bash
26 lines
826 B
Bash
# Contributor: Constantin Schomburg <me@xconstruct.net>
|
|
# Maintainer: Frederik "Freso" S. Olesen <archlinux@freso.dk>
|
|
|
|
pkgname=mcpatcher
|
|
pkgver='2.4.2_03'
|
|
pkgrel=1
|
|
pkgdesc="Minecraft patcher to fix textures with higher than default resolution"
|
|
arch=('any')
|
|
license=('Public Domain')
|
|
url="https://github.com/pclewis/mcpatcher"
|
|
depends=('java-runtime')
|
|
optdepends=('minecraft: the game itself')
|
|
noextract=("$pkgname-$pkgver.jar")
|
|
source=(mcpatcher
|
|
https://github.com/downloads/pclewis/mcpatcher/$pkgname-$pkgver.jar)
|
|
md5sums=('38358254be76dc84676509f43be44938'
|
|
'acf12fb6c39263b2e7e8b2714418a796')
|
|
|
|
build() {
|
|
cd "$srcdir"
|
|
|
|
install -vDm755 "mcpatcher" "$pkgdir/usr/bin/mcpatcher"
|
|
install -vDm644 "$pkgname-$pkgver.jar" "$pkgdir/usr/share/mcpatcher/mcpatcher.jar"
|
|
}
|
|
|
|
# vim:set ts=4 sw=4 et:
|