ayatana-libindicator.

This commit is contained in:
4fury-c3440d8
2022-01-18 07:16:21 +03:00
parent 157481a8fe
commit 465983df5f
2 changed files with 19 additions and 11 deletions
+8 -9
View File
@@ -4,22 +4,21 @@
# Licensed under the GNU General Public License, version 3. # Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt # See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import autotools from pisi.actionsapi import shelltools
from pisi.actionsapi import cmaketools
from pisi.actionsapi import pisitools from pisi.actionsapi import pisitools
from pisi.actionsapi import get from pisi.actionsapi import get
def setup(): def setup():
autotools.autoreconf("-fi") cmaketools.configure("-B_build -DCMAKE_BUILD_TYPE=Release -L")
autotools.configure("--libexecdir=/usr/lib --with-gtk=3 --disable-static")
# for fix unused dependency
pisitools.dosed("libtool"," -shared ", " -Wl,-O1,--as-needed -shared ")
def build(): def build():
autotools.make() shelltools.cd("_build")
cmaketools.make()
def install(): def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR()) shelltools.cd("_build")
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "NEWS", "ChangeLog", "COPYING", "README") pisitools.dodoc("../AUTHORS", "../NEWS")
+11 -2
View File
@@ -13,10 +13,11 @@
<PartOf>desktop.misc</PartOf> <PartOf>desktop.misc</PartOf>
<Summary>Ayatana Indicators Shared Library.</Summary> <Summary>Ayatana Indicators Shared Library.</Summary>
<Description>The Ayatana Indicators project is the continuation of Application Indicators and System Indicators, two technologies developed by Canonical Ltd. for the Unity7 desktop.</Description> <Description>The Ayatana Indicators project is the continuation of Application Indicators and System Indicators, two technologies developed by Canonical Ltd. for the Unity7 desktop.</Description>
<Archive sha1sum="1cb437642066430a09ce640ab496bef67f3da28d" type="targz"> <Archive sha1sum="1353db4a690ce4350a06dd258b56e15cf672a7a9" type="targz">
https://github.com/AyatanaIndicators/libayatana-indicator/archive/refs/tags/0.8.4.tar.gz https://github.com/AyatanaIndicators/libayatana-indicator/archive/refs/tags/0.9.0.tar.gz
</Archive> </Archive>
<BuildDependencies> <BuildDependencies>
<Dependency>cmake</Dependency>
<Dependency>gtk3-devel</Dependency> <Dependency>gtk3-devel</Dependency>
<Dependency>glib2-devel</Dependency> <Dependency>glib2-devel</Dependency>
<Dependency>python3-devel</Dependency> <Dependency>python3-devel</Dependency>
@@ -37,6 +38,7 @@
</RuntimeDependencies> </RuntimeDependencies>
<Files> <Files>
<Path fileType="library">/usr/lib</Path> <Path fileType="library">/usr/lib</Path>
<Path fileType="executable">/usr/libexec</Path>
<Path fileType="doc">/usr/share/doc</Path> <Path fileType="doc">/usr/share/doc</Path>
<Path fileType="data">/usr/share</Path> <Path fileType="data">/usr/share</Path>
</Files> </Files>
@@ -57,6 +59,13 @@
</Package> </Package>
<History> <History>
<Update release="2">
<Date>2022-01-18</Date>
<Version>0.9.0</Version>
<Comment>Version bump.</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
<Update release="1"> <Update release="1">
<Date>2021-10-13</Date> <Date>2021-10-13</Date>
<Version>0.8.4</Version> <Version>0.8.4</Version>