blob: 30e077d3ebbb6dff99bf538b9c8d6f23447a012e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Maintainer: flafflar
# Contributor: nic96
pkgname=worldeditor-bin
pkgver=2.5.2r1
pkgrel=1
pkgdesc="WorldEditor (WED) is a CAD-like graphic editor that lets you create custom airport layouts. It is designed for X-Plane, and works with apt.dat version 850 and higher."
url="http://developer.x-plane.com/tools/worldeditor/"
license=('GPL')
depends=('fltk' 'glu' 'ttf-font')
install='worldeditor.install'
arch=('i686' 'x86_64')
source=("http://files.x-plane.com/public/wed/wed_lin_${pkgver//\./}.zip"
"WorldEditor.desktop"
"WorldEditor.png")
md5sums=('ea3cbb6be235e5a0836820214de643f3'
'b25f4e3cc6a845a457329de93c04c929'
'0efb061145dcfec118afcc6ffff044f1')
package() {
cd "${srcdir}/"
install -Dm755 "$srcdir"/WED "$pkgdir"/usr/bin/WED
install -Dm644 "$srcdir"/WorldEditor.desktop "$pkgdir"/usr/share/applications/WorldEditor.desktop
install -Dm644 "$srcdir"/WorldEditor.png "$pkgdir"/usr/share/pixmaps/WorldEditor.png
}
|