Added various packages required for Pantheon development
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
#!/usr/bin/env python3
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 2.
|
||||
# See the file http://www.gnu.org/copyleft/gpl.txt.
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
shelltools.system("gtkdocize")
|
||||
autotools.autoreconf("-vfi")
|
||||
autotools.configure("--enable-introspection")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall('DESTDIR=%s INSTALL="install -p"' % get.installDIR())
|
||||
|
||||
for i in shelltools.ls("examples"):
|
||||
if i.endswith(".png") or i.endswith(".c"):
|
||||
pisitools.insinto("/%s/%s/examples/" % (get.docDIR(), get.srcNAME()), "examples/%s" % i)
|
||||
|
||||
pisitools.dodoc("AUTHORS", "COPYING", "README", "NEWS")
|
||||
@@ -0,0 +1,54 @@
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>clutter-gst</Name>
|
||||
<Homepage>https://gitlab.gnome.org/GNOME/clutter-gst</Homepage>
|
||||
<Packager>
|
||||
<Name>Berk Çakar</Name>
|
||||
<Email>berk2238@hotmail.com</Email>
|
||||
</Packager>
|
||||
<License>LGPLv2.1</License>
|
||||
<Summary>GStreamer bindings for clutter</Summary>
|
||||
<Description>GStreamer bindings for clutter</Description>
|
||||
<BuildDependencies>
|
||||
<Dependency>clutter-devel</Dependency>
|
||||
<Dependency>gdk-pixbuf-devel</Dependency>
|
||||
<Dependency>gobject-introspection</Dependency>
|
||||
<Dependency>gst-plugins-base-devel</Dependency>
|
||||
<Dependency>gst-plugins-good</Dependency>
|
||||
<Dependency>gtk-doc</Dependency>
|
||||
<Dependency>libXdamage-devel</Dependency>
|
||||
<Dependency>libgudev-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Archive type="tarxz" sha1sum="251fcd1363aa0f4618a32a652cfaa07b879a999b">http://ftp.gnome.org/pub/gnome/sources/clutter-gst/3.0/clutter-gst-3.0.27.tar.xz</Archive>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>clutter-gst</Name>
|
||||
<Summary>GStreamer bindings for clutter</Summary>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/girepository-1.0</Path>
|
||||
<Path fileType="library">/usr/lib/gstreamer-1.0</Path>
|
||||
<Path fileType="library">/usr/lib/libclutter-gst-3.0.so</Path>
|
||||
<Path fileType="library">/usr/lib/libclutter-gst-3.0.so.0</Path>
|
||||
<Path fileType="library">/usr/lib/libclutter-gst-3.0.so.0.27.0</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="data">/usr/share/gir-1.0</Path>
|
||||
<Path fileType="doc">/usr/share/gtk-doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<Package>
|
||||
<Name>clutter-gst-devel</Name>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2021-04-21</Date>
|
||||
<Version>3.0.27</Version>
|
||||
<Comment>First release for Pisi Linux</Comment>
|
||||
<Name>Berk Çakar</Name>
|
||||
<Email>berk2238@hotmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user