@@ -0,0 +1,27 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/copyleft/gpl.txt
|
||||
|
||||
from pisi.actionsapi import cmaketools
|
||||
from pisi.actionsapi import get
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
|
||||
def setup():
|
||||
shelltools.makedirs("build")
|
||||
shelltools.cd("build")
|
||||
cmaketools.configure("-DCMAKE_BUILD_TYPE=release \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
-DCMAKE_INSTALL_LIBDIR=/usr/lib \
|
||||
-DPULL_TRANSLATIONS=no", sourceDir="..")
|
||||
|
||||
def build():
|
||||
shelltools.cd("build")
|
||||
cmaketools.make()
|
||||
|
||||
def install():
|
||||
shelltools.cd("build")
|
||||
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
shelltools.cd("..")
|
||||
pisitools.dodoc("AUTHORS", "COPYING")
|
||||
+27
@@ -0,0 +1,27 @@
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Name=Window Effects
|
||||
Name[tr]=Pencere Efektleri
|
||||
GenericName=Compton Configuration
|
||||
Comment=Configure Compton window effects
|
||||
Comment[tr]=Pencere Efektlerini Yapılandırın
|
||||
TryExec=compton-conf
|
||||
Exec=compton-conf
|
||||
Icon=preferences-desktop-display
|
||||
Categories=Settings;DesktopSettings;Qt;LXQt;
|
||||
|
||||
Name[ru]=Эффекты окна
|
||||
GenericName[ru]=Настройка Compton
|
||||
Comment[ru]=Настроить эффекты окна Compton
|
||||
Name[ru_RU]=Эффекты окна
|
||||
GenericName[ru_RU]=Настройка Compton
|
||||
Comment[ru_RU]=Настроить эффекты окна Compton
|
||||
Name[ja]=ウインドウ効果
|
||||
GenericName[ja]=Comptonの設定
|
||||
Comment[ja]=Comptonのウインドウ効果の設定
|
||||
Name[de]=Fenstereffekte
|
||||
GenericName[de]=Compton Konfiguration
|
||||
Comment[de]=Konfiguriere Compton-Fenstereffekte
|
||||
Name[pt]=Efeitos de janelas
|
||||
GenericName[pt]=Configuração do Compton
|
||||
Comment[pt]=Configurar os efeitos de janelas
|
||||
@@ -0,0 +1,53 @@
|
||||
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>compton-conf</Name>
|
||||
<Homepage>http://www.lxde.org</Homepage>
|
||||
<Packager>
|
||||
<Name>Ayhan Yalçınsoy</Name>
|
||||
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<Icon>lxqt</Icon>
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>GUI configuration tool for compton X composite manager.</Summary>
|
||||
<Description>GUI configuration tool for compton X composite manager.</Description>
|
||||
<Archive sha1sum="a3ed47dd46eedbdb5ba643d788506881f059d4dc" type="tarxz">https://github.com/lxde/compton-conf/releases/download/0.3.0/compton-conf-0.3.0.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency>qt5-linguist</Dependency>
|
||||
<Dependency>libconfig-devel</Dependency>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>lxqt-config</Dependency>
|
||||
<Dependency>qt5-x11extras-devel</Dependency>
|
||||
<Dependency>qt5-svg-devel</Dependency>
|
||||
<Dependency>kwindowsystem-devel</Dependency>
|
||||
<Dependency versionFrom="0.4.0">lxqt-build-tools</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>compton-conf</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>qt5-base</Dependency>
|
||||
<Dependency>libconfig</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="config">/etc/autostart</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile owner="root" permission="0644" target="/usr/share/applications/compton-conf.desktop">compton-conf.desktop</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2018-04-23</Date>
|
||||
<Version>0.3.0</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Ayhan Yalçınsoy</Name>
|
||||
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,7 @@
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>compton-conf</Name>
|
||||
<Summary xml:lang="tr">Compton X kompozit yöneticisi için GUI yapılandırma aracı.</Summary>
|
||||
<Description xml:lang="tr">X Kompozit yöneticisi yapılandırma (compton'dan için).</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user