@@ -0,0 +1,25 @@
|
|||||||
|
#!/usr/bin/env 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()
|
||||||
|
|
||||||
|
def build():
|
||||||
|
pisitools.dosed("lgi/Makefile", "PREFIX = /usr/local", "PREFIX = /usr")
|
||||||
|
autotools.make("LUA_INCDIR=/usr/include/luajit-2.0/ \
|
||||||
|
LUA_CFLAGS='$(pkg-config --cflags luajit) -O2'")
|
||||||
|
|
||||||
|
#autotools.make()
|
||||||
|
|
||||||
|
def install():
|
||||||
|
autotools.rawInstall("LUA_LIBDIR=/usr/lib/lua/5.3 \
|
||||||
|
LUA_SHAREDIR=/usr/share/lua/5.3 DESTDIR=%s" % get.installDIR())
|
||||||
|
|
||||||
|
pisitools.dodoc("LICENSE", "README*")
|
||||||
@@ -0,0 +1,54 @@
|
|||||||
|
<?xml version="1.0" ?>
|
||||||
|
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>luajit-lgi</Name>
|
||||||
|
<Homepage>https://github.com/lgi-devs/lgi</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>PisiLinux Community</Name>
|
||||||
|
<Email>admins@pisilinux.org</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>MIT</License>
|
||||||
|
<IsA>library</IsA>
|
||||||
|
<Summary>LuaJIT bindings for gnome/gobject using gobject-introspection library</Summary>
|
||||||
|
<Description>LuaJIT bindings for gnome/gobject using gobject-introspection library</Description>
|
||||||
|
<Archive sha1sum="1fed9371a131e5598faa477d31fdf9cc0de520ed" type="targz">https://github.com/lgi-devs/lgi/archive/refs/tags/0.9.2.tar.gz</Archive>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency>lua-devel</Dependency>
|
||||||
|
<Dependency>glib2-devel</Dependency>
|
||||||
|
<Dependency>libffi-devel</Dependency>
|
||||||
|
<Dependency>gobject-introspection-devel</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
|
<!--
|
||||||
|
<Patches>
|
||||||
|
<Patch>luajit-lgi.patch</Patch>
|
||||||
|
<Patch level="1">luajit-lgi.patch</Patch>
|
||||||
|
</Patches>
|
||||||
|
-->
|
||||||
|
</Source>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>luajit-lgi</Name>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency>glib2</Dependency>
|
||||||
|
<Dependency>libffi</Dependency>
|
||||||
|
<Dependency>gobject-introspection</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="library">/usr/lib</Path>
|
||||||
|
<Path fileType="data">/usr/share</Path>
|
||||||
|
<Path fileType="data">/usr/share/lua</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2022-05-21</Date>
|
||||||
|
<Version>0.9.2</Version>
|
||||||
|
<Comment>First release</Comment>
|
||||||
|
<Name>PisiLinux Community</Name>
|
||||||
|
<Email>admins@pisilinux.org</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" ?>
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>luajit-lgi</Name>
|
||||||
|
<Summary xml:lang="tr">LuaJIT bindings for gnome/gobject using gobject-introspection library</Summary>
|
||||||
|
<Description xml:lang="tr">LuaJIT bindings for gnome/gobject using gobject-introspection library</Description>
|
||||||
|
</Source>
|
||||||
|
</PISI>
|
||||||
@@ -0,0 +1,31 @@
|
|||||||
|
#!/usr/bin/env 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 cmaketools
|
||||||
|
from pisi.actionsapi import pisitools
|
||||||
|
from pisi.actionsapi import shelltools
|
||||||
|
from pisi.actionsapi import get
|
||||||
|
|
||||||
|
def setup():
|
||||||
|
pisitools.cflags.add("-fcommon")
|
||||||
|
shelltools.makedirs("build")
|
||||||
|
shelltools.cd("build")
|
||||||
|
cmaketools.configure("-DCMAKE_BUILD_TYPE=RELEASE \
|
||||||
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||||
|
-DSYSCONFDIR=/etc \
|
||||||
|
-DLUA_LIBRARY=/usr/lib/liblua.so \
|
||||||
|
-DLUA_INCLUDE_DIR=/usr/include", sourceDir="..")
|
||||||
|
|
||||||
|
def build():
|
||||||
|
shelltools.cd("build")
|
||||||
|
cmaketools.make()
|
||||||
|
|
||||||
|
def install():
|
||||||
|
shelltools.cd("build")
|
||||||
|
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||||
|
|
||||||
|
#shelltools.cd("..")
|
||||||
|
#pisitools.dodoc("README* ")
|
||||||
@@ -0,0 +1,89 @@
|
|||||||
|
<?xml version="1.0" ?>
|
||||||
|
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>awesome</Name>
|
||||||
|
<Homepage>https://github.com/awesomeWM/awesome</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>PisiLinux Community</Name>
|
||||||
|
<Email>admins@pisilinux.org</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>GPLv2</License>
|
||||||
|
<IsA>app</IsA>
|
||||||
|
<Summary>Awesome is a highly configurable, next generation framework window manager for X.</Summary>
|
||||||
|
<Description>Awesome, X için son derece yapılandırılabilir, yeni nesil bir çerçeve penceresi yöneticisidir.</Description>
|
||||||
|
<Archive sha1sum="c43f7fd3939ee866239eedf329493b063037f49b" type="targz">https://github.com/awesomeWM/awesome/archive/refs/tags/v4.3.tar.gz</Archive>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency>git</Dependency>
|
||||||
|
<Dependency>cmake</Dependency>
|
||||||
|
<Dependency>gzip</Dependency>
|
||||||
|
<Dependency>xmlto</Dependency>
|
||||||
|
<Dependency>pango-devel</Dependency>
|
||||||
|
<Dependency>luajit-lgi</Dependency>
|
||||||
|
<Dependency>imagemagick-devel</Dependency>
|
||||||
|
<Dependency>docbook-xsl</Dependency>
|
||||||
|
<Dependency>xcb-util-renderutil-devel</Dependency>
|
||||||
|
<Dependency>doxygen</Dependency>
|
||||||
|
<Dependency>lua-devel</Dependency>
|
||||||
|
<Dependency>dbus-devel</Dependency>
|
||||||
|
<Dependency>cairo-devel</Dependency>
|
||||||
|
<Dependency>glib2-devel</Dependency>
|
||||||
|
<Dependency>libX11-devel</Dependency>
|
||||||
|
<Dependency>libxcb-devel</Dependency>
|
||||||
|
<Dependency>xcb-util-devel</Dependency>
|
||||||
|
<Dependency>gdk-pixbuf-devel</Dependency>
|
||||||
|
<Dependency>xcb-util-wm-devel</Dependency>
|
||||||
|
<Dependency>xcb-util-image-devel</Dependency>
|
||||||
|
<Dependency>libxkbcommon-devel</Dependency>
|
||||||
|
<Dependency>xcb-util-xrm-devel</Dependency>
|
||||||
|
<Dependency>libxdg-basedir-devel</Dependency>
|
||||||
|
<Dependency>xcb-util-cursor-devel</Dependency>
|
||||||
|
<Dependency>xcb-util-keysyms-devel</Dependency>
|
||||||
|
<Dependency>startup-notification-devel</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
|
<!--
|
||||||
|
<Patches>
|
||||||
|
<Patch>awesome.patch</Patch>
|
||||||
|
<Patch level="1">awesome.patch</Patch>
|
||||||
|
</Patches>
|
||||||
|
-->
|
||||||
|
</Source>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>awesome</Name>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency>lua</Dependency>
|
||||||
|
<Dependency>dbus</Dependency>
|
||||||
|
<Dependency>cairo</Dependency>
|
||||||
|
<Dependency>glib2</Dependency>
|
||||||
|
<Dependency>libX11</Dependency>
|
||||||
|
<Dependency>libxcb</Dependency>
|
||||||
|
<Dependency>xcb-util</Dependency>
|
||||||
|
<Dependency>gdk-pixbuf</Dependency>
|
||||||
|
<Dependency>xcb-util-wm</Dependency>
|
||||||
|
<Dependency>libxkbcommon</Dependency>
|
||||||
|
<Dependency>xcb-util-xrm</Dependency>
|
||||||
|
<Dependency>libxdg-basedir</Dependency>
|
||||||
|
<Dependency>xcb-util-cursor</Dependency>
|
||||||
|
<Dependency>xcb-util-keysyms</Dependency>
|
||||||
|
<Dependency>startup-notification</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="executable">/usr/bin</Path>
|
||||||
|
<Path fileType="config">/etc</Path>
|
||||||
|
<Path fileType="library">/usr/lib</Path>
|
||||||
|
<Path fileType="data">/usr/share</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2022-05-21</Date>
|
||||||
|
<Version>4.3</Version>
|
||||||
|
<Comment>First release</Comment>
|
||||||
|
<Name>PisiLinux Community</Name>
|
||||||
|
<Email>admins@pisilinux.org</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" ?>
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>awesome</Name>
|
||||||
|
<Summary xml:lang="tr">Awesome is a highly configurable, next generation framework window manager for X.</Summary>
|
||||||
|
<Description xml:lang="tr">Awesome, X için son derece yapılandırılabilir, yeni nesil bir çerçeve penceresi yöneticisidir.</Description>
|
||||||
|
</Source>
|
||||||
|
</PISI>
|
||||||
Reference in New Issue
Block a user