homepages.
This commit is contained in:
@@ -37,7 +37,7 @@
|
|||||||
</BuildDependencies>
|
</BuildDependencies>
|
||||||
<Patches>
|
<Patches>
|
||||||
<Patch level="1">overview_plugin_test.patch</Patch>
|
<Patch level="1">overview_plugin_test.patch</Patch>
|
||||||
<Patch level="1">9497d829e1b207eb83575dc6f617feecfb89bc16.patch</Patch>
|
<Patch level="1">9497d829e1b207eb83575dc6f617feecfb89bc16.patch</Patch>
|
||||||
</Patches>
|
</Patches>
|
||||||
</Source>
|
</Source>
|
||||||
|
|
||||||
@@ -77,7 +77,7 @@
|
|||||||
</Package>
|
</Package>
|
||||||
|
|
||||||
<History>
|
<History>
|
||||||
<Update release="6">
|
<Update release="6">
|
||||||
<Date>2020-09-22</Date>
|
<Date>2020-09-22</Date>
|
||||||
<Version>1.36</Version>
|
<Version>1.36</Version>
|
||||||
<Comment>Rebuild libgit2.</Comment>
|
<Comment>Rebuild libgit2.</Comment>
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
<?xml version="1.0" ?>
|
<?xml version="1.0" ?>
|
||||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||||
<PISI>
|
<PISI>
|
||||||
<Source>
|
<Source>
|
||||||
<Name>faac</Name>
|
<Name>faac</Name>
|
||||||
<Homepage>https://www.audiocoding.com/</Homepage>
|
<Homepage>https://github.com/knik0/faac</Homepage>
|
||||||
<Packager>
|
<Packager>
|
||||||
<Name>PisiLinux Community</Name>
|
<Name>PisiLinux Community</Name>
|
||||||
<Email>admins@pisilinux.org</Email>
|
<Email>admins@pisilinux.org</Email>
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
<PISI>
|
<PISI>
|
||||||
<Source>
|
<Source>
|
||||||
<Name>faad2</Name>
|
<Name>faad2</Name>
|
||||||
<Homepage>https://www.audiocoding.com/</Homepage>
|
<Homepage>https://github.com/knik0/faad2</Homepage>
|
||||||
<Packager>
|
<Packager>
|
||||||
<Name>PisiLinux Community</Name>
|
<Name>PisiLinux Community</Name>
|
||||||
<Email>admins@pisilinux.org</Email>
|
<Email>admins@pisilinux.org</Email>
|
||||||
|
|||||||
@@ -19,6 +19,7 @@
|
|||||||
</Archive>
|
</Archive>
|
||||||
<BuildDependencies>
|
<BuildDependencies>
|
||||||
<Dependency>cmake</Dependency>
|
<Dependency>cmake</Dependency>
|
||||||
|
<Dependency>ccache</Dependency>
|
||||||
<Dependency>zlib-devel</Dependency>
|
<Dependency>zlib-devel</Dependency>
|
||||||
<Dependency>glib2-devel</Dependency>
|
<Dependency>glib2-devel</Dependency>
|
||||||
<Dependency>libmtp-devel</Dependency>
|
<Dependency>libmtp-devel</Dependency>
|
||||||
|
|||||||
+10
-12
@@ -1,9 +1,8 @@
|
|||||||
#!/usr/bin/python
|
#!/usr/bin/python
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
#
|
#
|
||||||
# Copyright 2009 TUBITAK/UEKAE
|
# Licensed under the GNU General Public License, version 3.
|
||||||
# Licensed under the GNU General Public License, version 2.
|
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
|
||||||
# See the file http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
|
|
||||||
|
|
||||||
from pisi.actionsapi import autotools
|
from pisi.actionsapi import autotools
|
||||||
from pisi.actionsapi import pisitools
|
from pisi.actionsapi import pisitools
|
||||||
@@ -12,19 +11,18 @@ from pisi.actionsapi import shelltools
|
|||||||
from pisi.actionsapi import get
|
from pisi.actionsapi import get
|
||||||
|
|
||||||
def setup():
|
def setup():
|
||||||
shelltools.export("CC", "clang")
|
shelltools.export("CC", "clang")
|
||||||
shelltools.export("CXX", "clang++")
|
shelltools.export("CXX", "clang++")
|
||||||
|
|
||||||
cmaketools.configure("-DCMAKE_INSTALL_LIBDIR=lib \
|
cmaketools.configure("-DCMAKE_INSTALL_LIBDIR=lib \
|
||||||
-DOCLICD_COMPAT=1")
|
-DOCLICD_COMPAT=1")
|
||||||
|
|
||||||
def build():
|
def build():
|
||||||
cmaketools.make()
|
cmaketools.make()
|
||||||
|
|
||||||
def install():
|
def install():
|
||||||
|
|
||||||
autotools.rawInstall("DESTDIR=%s" %get.installDIR())
|
autotools.rawInstall("DESTDIR=%s" %get.installDIR())
|
||||||
pisitools.remove("/usr/include/CL/*")
|
pisitools.remove("/usr/include/CL/*")
|
||||||
pisitools.removeDir("/usr/include")
|
pisitools.removeDir("/usr/include")
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
+28
-31
@@ -1,19 +1,19 @@
|
|||||||
<?xml version="1.0" ?>
|
<?xml version="1.0" ?>
|
||||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||||
<PISI>
|
<PISI>
|
||||||
<Source>
|
<Source>
|
||||||
<Name>beignet</Name>
|
<Name>beignet</Name>
|
||||||
<Homepage>https://01.org/beignet/</Homepage>
|
<Homepage>https://www.freedesktop.org/wiki/Software/Beignet/</Homepage>
|
||||||
<Packager>
|
<Packager>
|
||||||
<Name>Idris Kalp</Name>
|
<Name>Idris Kalp</Name>
|
||||||
<Email>idriskalp@gmail.com</Email>
|
<Email>idriskalp@gmail.com</Email>
|
||||||
</Packager>
|
</Packager>
|
||||||
<License>GPLv2</License>
|
<License>GPLv2</License>
|
||||||
<IsA>library</IsA>
|
<IsA>library</IsA>
|
||||||
<Summary>Open source implementation of the OpenCL for Intel GPUs</Summary>
|
<Summary>Open source implementation of the OpenCL for Intel GPUs</Summary>
|
||||||
<Description>Open source implementation of the OpenCL for Intel GPUs</Description>
|
<Description>Open source implementation of the OpenCL for Intel GPUs</Description>
|
||||||
<Archive sha1sum="c3a689ec504c2d28e856a62bf97e5abb0da4a797" type="tarxz">https://sourceforge.net/projects/pisilinux/files/source/beignet-1.3.2_12.tar.xz</Archive>
|
<Archive sha1sum="c3a689ec504c2d28e856a62bf97e5abb0da4a797" type="tarxz">https://sourceforge.net/projects/pisilinux/files/source/beignet-1.3.2_12.tar.xz</Archive>
|
||||||
<BuildDependencies>
|
<BuildDependencies>
|
||||||
<Dependency>libX11-devel</Dependency>
|
<Dependency>libX11-devel</Dependency>
|
||||||
<Dependency>libXext-devel</Dependency>
|
<Dependency>libXext-devel</Dependency>
|
||||||
<Dependency>libXfixes-devel</Dependency>
|
<Dependency>libXfixes-devel</Dependency>
|
||||||
@@ -24,47 +24,44 @@
|
|||||||
<Dependency>opencl-icd-devel</Dependency>
|
<Dependency>opencl-icd-devel</Dependency>
|
||||||
<Dependency>cmake</Dependency>
|
<Dependency>cmake</Dependency>
|
||||||
<Dependency>python3-devel</Dependency>
|
<Dependency>python3-devel</Dependency>
|
||||||
</BuildDependencies>
|
</BuildDependencies>
|
||||||
<Patches>
|
<Patches>
|
||||||
<Patch level="0">llvm8.patch</Patch>
|
<Patch level="0">llvm8.patch</Patch>
|
||||||
<Patch level="0">llvm9.patch</Patch>
|
<Patch level="0">llvm9.patch</Patch>
|
||||||
<Patch level="1">llvm10.patch</Patch>
|
<Patch level="1">llvm10.patch</Patch>
|
||||||
</Patches>
|
</Patches>
|
||||||
</Source>
|
</Source>
|
||||||
|
|
||||||
<Package>
|
<Package>
|
||||||
<Name>beignet</Name>
|
<Name>beignet</Name>
|
||||||
<RuntimeDependencies>
|
<RuntimeDependencies>
|
||||||
<Dependency>libX11</Dependency>
|
<Dependency>libX11</Dependency>
|
||||||
<Dependency>libXext</Dependency>
|
<Dependency>libXext</Dependency>
|
||||||
<Dependency>libXfixes</Dependency>
|
<Dependency>libXfixes</Dependency>
|
||||||
<Dependency>llvm-clang</Dependency>
|
<Dependency>llvm-clang</Dependency>
|
||||||
<Dependency>opencl-icd</Dependency>
|
<Dependency>opencl-icd</Dependency>
|
||||||
<Dependency>libgcc</Dependency>
|
<Dependency>libgcc</Dependency>
|
||||||
<Dependency>libdrm</Dependency>
|
<Dependency>libdrm</Dependency>
|
||||||
<Dependency>libdrm-intel</Dependency>
|
<Dependency>libdrm-intel</Dependency>
|
||||||
<Dependency>llvm</Dependency>
|
<Dependency>llvm</Dependency>
|
||||||
<Dependency>llvm-libs</Dependency>
|
<Dependency>llvm-libs</Dependency>
|
||||||
</RuntimeDependencies>
|
</RuntimeDependencies>
|
||||||
<Files>
|
<Files>
|
||||||
<Path fileType="config">/etc</Path>
|
<Path fileType="config">/etc</Path>
|
||||||
<Path fileType="library">/usr/lib</Path>
|
<Path fileType="library">/usr/lib</Path>
|
||||||
<Path fileType="data">/usr/share</Path>
|
<Path fileType="data">/usr/share</Path>
|
||||||
<Path fileType="doc">/usr/share/doc</Path>
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
</Files>
|
</Files>
|
||||||
</Package>
|
</Package>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<History>
|
<History>
|
||||||
<Update release="1">
|
<Update release="1">
|
||||||
<Date>2020-01-11</Date>
|
<Date>2020-01-11</Date>
|
||||||
<Version>1.3.2_12</Version>
|
<Version>1.3.2_12</Version>
|
||||||
<Comment>First Release</Comment>
|
<Comment>First Release</Comment>
|
||||||
<Name>Idris Kalp</Name>
|
<Name>Idris Kalp</Name>
|
||||||
<Email>idriskalp@gmail.com</Email>
|
<Email>idriskalp@gmail.com</Email>
|
||||||
</Update>
|
</Update>
|
||||||
</History>
|
</History>
|
||||||
</PISI>
|
</PISI>
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user