Merge pull request #6069 from ertugerata/master

polybar
This commit is contained in:
Ertuğrul Erata
2018-12-01 00:04:23 +03:00
committed by GitHub
7 changed files with 206956 additions and 167482 deletions
+167554 -167480
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -1 +1 @@
88b6f05317502efe0b463168a9f26f77a469a5e0
d678e7807569b9d8a5e6d89072dc7d168fc90ff7
BIN
View File
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
4c67f3aa4de69890cf7ca85bf34a57e4308aa0ac
5b4b3cc98cddac3d8d5df97c1e7bece8fdcbcbd7
+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>