updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / magicseteditor-bin / PKGBUILD
blob1d3e00e95bd4a5806d72fbab31fc59ad94b33156
1 # Contributor: Daenyth <Daenyth+Arch AT gmail DOT com>
2 pkgname=magicseteditor-bin
3 pkgver=0.3.8
4 pkgrel=1
5 pkgdesc="A program to help create Magic: the Gathering cards and sets. 32 bit binary release"
6 arch=(i686)
7 url="http://magicseteditor.sourceforge.net"
8 license=('GPL')
9 depends=(wxgtk hunspell)
10 conflicts=(magicseteditor)
11 provides=("magicseteditor=$pkgver")
12 source=(http://downloads.sourceforge.net/magicseteditor/mse-$pkgver-linux.tar.gz)
13 md5sums=('f92d3a04a65e30f35a812cffeda32638')
15 build() {
16   cd "$srcdir/magicseteditor/program"
18   install -Dm755 magicseteditor $pkgdir/usr/bin/magicseteditor
19   install -d $pkgdir/usr/share/magicseteditor/
20   cp -r data resource $pkgdir/usr/share/magicseteditor/
21   find $pkgdir/usr/share/magicseteditor -type d -exec chmod 755 {} +
22   find $pkgdir/usr/share/magicseteditor -type f -exec chmod 644 {} +
25 # vim:set ts=2 sw=2 et: