Merge pull request #4841 from groni/master
add gmult, lmarbels and hex-a-hop to the repo, packages rebuild add m…
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
#!/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 autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
shelltools.system("./configure --prefix=/usr LDFLAGS=-lm")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("NEWS", "THANKS", "COPYING", "README", "AUTHORS")
|
||||
@@ -0,0 +1,75 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>gmult</Name>
|
||||
<Homepage>http://mterry.name/gmult/</Homepage>
|
||||
<Packager>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv3</License>
|
||||
<Icon>gmult</Icon>
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>Multiplication Puzzle</Summary>
|
||||
<Description>Multiplication Puzzle is a simple GTK+ 2 game that emulates the multiplication game found in Emacs. Basically, a multiplication problem is shown with all digits replaced by letters. Your job is to guess which letter represents which number.</Description>
|
||||
<Archive sha1sum="d73c588077f564a458f7595cdd62c9b69408f369" type="tarbz2">https://launchpad.net/gmult/trunk/8.0/+download/gmult-8.0.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>atk-devel</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>pango-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>gdk-pixbuf-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>gmult</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>atk</Dependency>
|
||||
<Dependency>gtk3</Dependency>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>pango</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share/applications</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gmult</Path>
|
||||
<Path fileType="data">/usr/share/icons</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2018-05-11</Date>
|
||||
<Version>8.0</Version>
|
||||
<Comment>rebuild and testing</Comment>
|
||||
<Name>Stefan Gronewold</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2014-02-23</Date>
|
||||
<Version>8.0</Version>
|
||||
<Comment>rebuild</Comment>
|
||||
<Name>Osman Erkan</Name>
|
||||
<Email>osman.erkan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-04-27</Date>
|
||||
<Version>8.0</Version>
|
||||
<Comment>V.bump</Comment>
|
||||
<Name>Osman Erkan</Name>
|
||||
<Email>osman.erkan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2010-04-28</Date>
|
||||
<Version>7.3</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Doruk Fişek</Name>
|
||||
<Email>dfisek@fisek.com.tr</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>gmult</Name>
|
||||
<Summary xml:lang="tr">Çarpma Bulmacası</Summary>
|
||||
<Description xml:lang="tr">Çarpma Bulmacası, Emacs'teki çarpma oyununun benzeri basit bir GTK+ 2 oyunudur. Tüm basamakların harflerle değiştirildiği bir çarpma problemi gösteriliyor. Sizin işiniz de, hangi harfe hangi rakamın karşılık geldiğini tahmin etmek.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,23 @@
|
||||
#!/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 autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
|
||||
def setup():
|
||||
autotools.configure()
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall('DESTDIR="%s"' % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS", "COPYING", "ChangeLog")
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Version=1.0
|
||||
Encoding=UTF-8
|
||||
Name=Hex-a-hop
|
||||
Name[tr]=Hex-a-hop
|
||||
GenericName=Hexagonal Puzzle
|
||||
GenericName[tr]=Altıgen Zeka Oyunu
|
||||
Icon=hex-a-hop
|
||||
Exec=hex-a-hop
|
||||
Terminal=false
|
||||
StartupNotify=false
|
||||
Categories=Application;Game;LogicGame;
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 2.0 KiB |
@@ -0,0 +1,68 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>hex-a-hop</Name>
|
||||
<Homepage>http://hexahop.sourceforge.net/downloads.html</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>as-is</License>
|
||||
<Icon>hex-a-hop</Icon>
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>Hexagonal puzzle game</Summary>
|
||||
<Description>Hex-a-hop is a puzzle game based on hexagonal tiles. There is no time limit and no real-time elements. The objective is simply to destroy all the green hexagonal tiles on each of the 100 levels. As you progress through the game, more types of tiles are introduced, which make things more difficult and interesting.</Description>
|
||||
<Archive sha1sum="5e1994caaa4974ba87bb5676aed1e44c81dec85d" type="targz">mirrors://sourceforge/hexahop/hex-a-hop/1.1.0/hex-a-hop-1.1.0.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>libsdl-devel</Dependency>
|
||||
<Dependency>sdl-mixer-devel</Dependency>
|
||||
<Dependency>sdl-ttf-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>hex-a-hop</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>libsdl</Dependency>
|
||||
<Dependency>sdl-mixer</Dependency>
|
||||
<Dependency>sdl-ttf</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share/applications</Path>
|
||||
<Path fileType="data">/usr/share/hex-a-hop</Path>
|
||||
<Path fileType="data">/usr/share/pixmaps</Path>
|
||||
<Path fileType="doc">/usr/share/doc/hex-a-hop</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile owner="root" permission="0644" target="/usr/share/applications/hex-a-hop.desktop">hex-a-hop.desktop</AdditionalFile>
|
||||
<AdditionalFile owner="root" permission="0644" target="/usr/share/pixmaps/hex-a-hop.png">hex-a-hop.png</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2018-05-11</Date>
|
||||
<Version>1.1.0</Version>
|
||||
<Comment>Rebuild and testing</Comment>
|
||||
<Name>Stefan Gronewold</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2014-02-17</Date>
|
||||
<Version>1.1.0</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvarice@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2011-01-11</Date>
|
||||
<Version>1.1.0</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>hex-a-hop</Name>
|
||||
<Summary xml:lang="tr">Altıgenler içeren bulmaca oyunu</Summary>
|
||||
<Description xml:lang="tr">Hex-a-hop altıgen döşemeler üzerinde oynanan bir bulmaca oyunudur. Zaman sınırı ve gerçek zamanlı öğe yoktur. Amaç 100 bölümün her birindeki yeşil döşemeleri yoketmektir. Oyunda ilerledikçe yeni döşeme türleri çıkar ve işler daha zor ve ilginç hale gelir.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,23 @@
|
||||
#!/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 autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
|
||||
def setup():
|
||||
autotools.configure("--localstatedir=/usr/share/lmarbles")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall('DESTDIR="%s"' % get.installDIR())
|
||||
|
||||
pisitools.removeDir("/usr/share/icons")
|
||||
|
||||
pisitools.dodoc("AUTHORS", "ChangeLog", "README", "TODO")
|
||||
@@ -0,0 +1,13 @@
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Encoding=UTF-8
|
||||
Name=LMarbles
|
||||
GenericName=Atomix Clone
|
||||
GenericName[tr]=Atomix Oyunu
|
||||
Comment=SDL Atomix Clone
|
||||
Comment[tr]=Atomix Oyunu
|
||||
Icon=lmarbles
|
||||
TryExec=lmarbles
|
||||
Exec=lmarbles
|
||||
Terminal=false
|
||||
Categories=Qt;KDE;Game;BlocksGame;
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 839 B |
@@ -0,0 +1,66 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>lmarbles</Name>
|
||||
<Homepage>http://lgames.sourceforge.net/index.php?project=LMarbles</Homepage>
|
||||
<Packager>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<Icon>lmarbles</Icon>
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>Marble puzzle game</Summary>
|
||||
<Description>Puzzle game inspired by Atomix and written using the SDL library.</Description>
|
||||
<Archive sha1sum="58db2447276bdf480e03964d729513f022f7790b" type="targz">mirrors://sourceforge/lgames/lmarbles-1.0.8.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>libsdl-devel</Dependency>
|
||||
<Dependency>sdl-mixer-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>lmarbles</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libsdl</Dependency>
|
||||
<Dependency>sdl-mixer</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share/applications</Path>
|
||||
<Path fileType="data">/usr/share/lmarbles</Path>
|
||||
<Path fileType="data">/usr/share/pixmaps</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc/lmarbles</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile owner="root" permission="0644" target="/usr/share/applications/lmarbles.desktop">lmarbles.desktop</AdditionalFile>
|
||||
<AdditionalFile owner="root" permission="0644" target="/usr/share/pixmaps/lmarbles.png">lmarbles.png</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2018-05-11</Date>
|
||||
<Version>1.0.8</Version>
|
||||
<Comment>Rebuild and testing.</Comment>
|
||||
<Name>Stefan Gronewold</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2014-03-09</Date>
|
||||
<Version>1.0.8</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvarice@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2010-01-17</Date>
|
||||
<Version>1.0.8</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Doruk Fişek</Name>
|
||||
<Email>dfisek@fisek.com.tr</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>lmarbles</Name>
|
||||
<Summary xml:lang="tr">Bilye oyunu</Summary>
|
||||
<Description xml:lang="tr">LMarbles, Atomix oyunundan yola çıkılarak hazırlanmış bir oyundur. Bilyeleri istenen yerlere yerleştirerek bulmacaları çözmeniz gerekir.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
+165265
-165024
File diff suppressed because it is too large
Load Diff
@@ -1 +1 @@
|
||||
2a43efd850601b680ca15fec25fa19d8adf2d23e
|
||||
2f0a39eaec8aebc5c53530f645b5e3be2841dbdf
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
91dc1974c32c6c64c1f62f69c737283f2ba8156e
|
||||
44b9966e3a19c284f44ad1a938058f1585b98c99
|
||||
Reference in New Issue
Block a user