polybar in main

This commit is contained in:
Ertuğrul Erata
2018-12-01 00:06:50 +03:00
parent 9ce774b803
commit fba00ca179
7 changed files with 206899 additions and 167353 deletions
+167497 -167351
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -1 +1 @@
de7417e0509bcd2bd194fa4e6e77d8b3b8e3a956
03f923306a0799883b8adba4b129e0dcee9143e9
BIN
View File
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
4b5212a05db73389d6b360da134dfce59809400c
dc1b69e562090765c89594d667d2656e3981aafe
+34
View File
@@ -0,0 +1,34 @@
#!/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 shelltools
from pisi.actionsapi import cmaketools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
shelltools.makedirs("build")
shelltools.cd("build")
cmaketools.configure("-D CMAKE_BUILD_TYPE=Release \
-DENABLE_ALSA=ON \
-DENABLE_CURL=ON \
-DENABLE_I3=ON \
-DBUILD_IPC_MSG=ON \
-DENABLE_NETWORK=ON \
-DENABLE_PULSEAUDIO=ON", sourceDir="..")
def build():
shelltools.cd("build")
cmaketools.make()
cmaketools.make("doc")
def install():
shelltools.cd("build")
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
File diff suppressed because one or more lines are too long
+69
View File
@@ -0,0 +1,69 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pardus.org.tr/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>polybar</Name>
<Homepage>https://polybar.github.io/</Homepage>
<Packager>
<Name>Ertuğrul Erata</Name>
<Email>ertugrulerata@gmail.com</Email>
</Packager>
<License>GPLv2</License>
<IsA>app:gui</IsA>
<Summary>A fast and easy to use tool for creating status bars</Summary>
<Description>Polybar aims to help users build beautiful and highly customizable status bars for their desktop environment, without the need of having a black belt in shell scripting.</Description>
<Archive sha1sum="50facbb42088ea5db99f37cd97777956cf3e2ac9" type="targz">https://github.com/jaagr/polybar/archive/3.2.1.tar.gz</Archive>
<BuildDependencies>
<Dependency>cmake</Dependency>
<Dependency>i3wm-devel</Dependency>
<Dependency>xcb-proto</Dependency>
<Dependency>cairo-devel</Dependency>
<Dependency>curl-devel</Dependency>
<Dependency>xcb-util-xrm-devel</Dependency>
<Dependency>libnl-devel</Dependency>
<Dependency>wireless-tools-devel</Dependency>
<Dependency>alsa-lib-devel</Dependency>
<Dependency>jsoncpp-devel</Dependency>
<Dependency>pulseaudio-libs-devel</Dependency>
</BuildDependencies>
<Patches>
<Patch level="1">xpp_1_40_i3ipcpp_0_71.patch</Patch>
</Patches>
</Source>
<Package>
<Name>polybar</Name>
<RuntimeDependencies>
<Dependency>libgcc</Dependency>
<Dependency>cairo</Dependency>
<Dependency>curl</Dependency>
<Dependency>libxcb</Dependency>
<Dependency>freetype</Dependency>
<Dependency>fontconfig</Dependency>
<Dependency>xcb-util-xrm</Dependency>
<Dependency>xcb-util-wm</Dependency>
<Dependency>xcb-util-cursor</Dependency>
<Dependency>libnl</Dependency>
<Dependency>jsoncpp</Dependency>
<Dependency>alsa-lib</Dependency>
<Dependency>pulseaudio-libs</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="data">/usr/share/bash-completion</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="data">/usr/share/doc</Path>
<Path fileType="data">/usr/share/zsh</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2018-11-30</Date>
<Version>3.2.1</Version>
<Comment>First release</Comment>
<Name>Ertuğrul Erata</Name>
<Email>ertugrulerata@gmail.com</Email>
</Update>
</History>
</PISI>