PKGBUILDs/aur/extract-xiso/PKGBUILD
2012-11-25 05:56:03 -05:00

25 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
}