mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
19 lines
537 B
Bash
19 lines
537 B
Bash
# Maintainer: UtG <utg.chakra.linux[at]gmail[dot]com>
|
|
|
|
pkgname=flightgear-data
|
|
pkgver=3.4.0
|
|
pkgrel=1
|
|
pkgdesc="Base-Data for the opensource flight-simulator."
|
|
arch=('any')
|
|
license=('GPL')
|
|
url=http://www.flightgear.org
|
|
options=(!strip)
|
|
source=("http://mirrors.ibiblio.org/flightgear/ftp/Shared/FlightGear-data-$pkgver.tar.bz2")
|
|
md5sums=('42a8df9063100738c7315650278705e1')
|
|
|
|
package() {
|
|
cd $srcdir
|
|
mkdir -p $pkgdir/usr/share/flightgear
|
|
mv fgdata/ $pkgdir/usr/share/flightgear/data
|
|
chown root:root $pkgdir/usr/share/flightgear/data
|
|
} |