mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
24 lines
695 B
Bash
24 lines
695 B
Bash
# Contributor: Wes Brewer <brewerw@gmail.com>
|
|
# Maintainer: sidious/SiD <miste78 web de>
|
|
|
|
pkgname=extract-xiso
|
|
pkgver=2.5
|
|
pkgrel=2
|
|
pkgdesc="xdvdfs (xbox iso) file creation and extraction utility"
|
|
arch=('i686' 'x86_64')
|
|
url="http://sourceforge.net/projects/extract-xiso"
|
|
license=('custom')
|
|
conflicts=('extract-xiso-somski')
|
|
source=(http://downloads.sourceforge.net/$pkgname/${pkgname}_v${pkgver}_src.tgz)
|
|
md5sums=('1283bb3be0f17bfe511aff86cff0eb76')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}
|
|
# build
|
|
make
|
|
# install binary
|
|
install -Dm755 extract-xiso ${pkgdir}/usr/bin/extract-xiso
|
|
# install custom license
|
|
install -Dm644 LICENSE.TXT ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.TXT
|
|
}
|
|
|