This commit is contained in:
alick01
2020-12-06 17:03:33 +03:00
parent 10b512dbb7
commit 01252a2bfc
2 changed files with 68 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
#!/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 autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
#def setup():
#
def build():
autotools.make("prefix=/usr")
def install():
autotools.rawInstall("DESTDIR=%s prefix=/usr" % get.installDIR())
pisitools.dodoc("ChangeLog", "COPYING", "README.md")
+48
View File
@@ -0,0 +1,48 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>nocsd</Name>
<Homepage>https://github.com/ZaWertun/gtk3-nocsd</Homepage>
<Packager>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Packager>
<License>LGPLv2.1</License>
<IsA>library</IsA>
<PartOf>desktop.toolkit.gtk</PartOf>
<Summary> A hack to disable gtk+ 3 client side decoration</Summary>
<Description>gtk3-nocsd is a small module used to disable the client side decoration of Gtk+ 3.</Description>
<Archive sha1sum="95298a0a09bcd1634916e490cc152eb3d18ee083" type="targz">
https://github.com/ZaWertun/gtk3-nocsd/archive/v3.0.4.tar.gz
</Archive>
<BuildDependencies>
<Dependency>gtk3-devel</Dependency>
<Dependency>gobject-introspection-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>nocsd</Name>
<RuntimeDependencies>
<!--<Dependency></Dependency> -->
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin/gtk3-nocsd</Path>
<Path fileType="library">/usr/lib/libgtk3-nocsd.so.0</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="doc">/usr/share/doc/gtk3-nocsd</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2020-10-01</Date>
<Version>3.0.4</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
</History>
</PISI>