new game
simgear flightgear opencity
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
import os
|
||||
|
||||
WorkDir = "fgdata"
|
||||
NoStrip = "/"
|
||||
|
||||
def fixperms(d):
|
||||
for root, dirs, files in os.walk(d):
|
||||
for name in dirs:
|
||||
shelltools.chmod(os.path.join(root, name), 0755)
|
||||
for name in files:
|
||||
shelltools.chmod(os.path.join(root, name), 0644)
|
||||
|
||||
|
||||
def install():
|
||||
pisitools.dodir("/usr/share")
|
||||
shelltools.cd("..")
|
||||
fixperms(WorkDir)
|
||||
shelltools.copytree(WorkDir, "%s/usr/share/flightgear" % get.installDIR())
|
||||
@@ -0,0 +1,49 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>flightgear-data-base</Name>
|
||||
<Homepage>http://www.flightgear.org</Homepage>
|
||||
<Packager>
|
||||
<Name>Osman Erkan</Name>
|
||||
<Email>osman.erkan@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<Icon>flightgear</Icon>
|
||||
<IsA>data</IsA>
|
||||
<Summary>Flightgear data files</Summary>
|
||||
<Description>Contains base data files for Flightgear simulator. You can also install additional data files, including the 3 DVD sized world map from the original website.</Description>
|
||||
<Archive sha1sum="e71cee16064b5f05e6574d065b50efec9709f455" type="tarbz2">https://sourceforge.net/projects/flightgear/files/release-2024.1/FlightGear-2024.1.1-data.txz/download</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>flightgear-data-base</Name>
|
||||
<Files>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2025-10-11</Date>
|
||||
<Version>2024.1.1</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Ali Cengiz Kurt</Name>
|
||||
<Email>alicengizkurt@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2020-10-15</Date>
|
||||
<Version>2020.1.3</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Ali Cengiz Kurt</Name>
|
||||
<Email>alicengizkurt@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2020-06-21</Date>
|
||||
<Version>2020.1.2</Version>
|
||||
<Comment>new release</Comment>
|
||||
<Name>Ali Cengiz Kurt</Name>
|
||||
<Email>alicengizkurt@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>flightgear-data-base</Name>
|
||||
<Summary xml:lang="tr">Flightgear verileri</Summary>
|
||||
<Description xml:lang="tr">Flightgear benzetimcisinin temel veri dosyaları. Daha fazla harita için 3 DVD boyutundaki tüm dünya haritası da dahil olmak üzere pek çok farklı veri dosyasını yazılımın sitesinden indirebilirsiniz.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user