add style configurator of mlk: extra fast and lightweight gui toolkit.

This commit is contained in:
4fury-c3440d8
2021-05-25 20:43:54 +03:00
parent 95ebdace50
commit 38982caea2
3 changed files with 83 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
<PISI>
<Name>desktop.toolkit.mlk</Name>
</PISI>
+21
View File
@@ -0,0 +1,21 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import shelltools, autotools, pisitools, get
NoStrip = ["/"]
shelltools.export("CFLAGS", get.CFLAGS())
shelltools.export("LDFLAGS", get.LDFLAGS())
def setup():
autotools.rawConfigure("--prefix=/usr")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
+59
View File
@@ -0,0 +1,59 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>mlkstyle</Name>
<Homepage>http://azsky2.html.xdomain.jp/soft/mlkstyle.html</Homepage>
<Packager>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Packager>
<License>MIT</License>
<IsA>app:gui</IsA>
<PartOf>desktop.toolkit.mlk</PartOf>
<Summary>mlk style editor.</Summary>
<Description>mlk widget style editor.</Description>
<Archive sha1sum="be0560f64293d7cf79a6d4ba1f7e6b9aab69842a" type="tarxz">
http://azsky2.html.xdomain.jp/arc/mlkstyle-1.0.3.tar.xz
</Archive>
<BuildDependencies>
<Dependency>zlib-devel</Dependency>
<Dependency>check-devel</Dependency>
<Dependency>libpng-devel</Dependency>
<Dependency>libX11-devel</Dependency>
<Dependency>libXext-devel</Dependency>
<Dependency>freetype-devel</Dependency>
<Dependency>fontconfig-devel</Dependency>
<Dependency>libXcursor-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>mlkstyle</Name>
<RuntimeDependencies>
<Dependency>zlib</Dependency>
<Dependency>libpng</Dependency>
<Dependency>libX11</Dependency>
<Dependency>libXext</Dependency>
<Dependency>freetype</Dependency>
<Dependency>fontconfig</Dependency>
<Dependency>libXcursor</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="doc">/usr/share/doc/mlkstyle</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2021-05-25</Date>
<Version>1.0.3</Version>
<Comment>First build.</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
</History>
</PISI>