@@ -45,6 +45,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Date>2020-01-12</Date>
|
||||
<Version>0.11.3</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2018-08-01</Date>
|
||||
<Version>0.11.3</Version>
|
||||
|
||||
Executable
+29
@@ -0,0 +1,29 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/copyleft/gpl.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import cmaketools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
shelltools.system("mkdir build_")
|
||||
shelltools.cd("build_")
|
||||
|
||||
shelltools.system("cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_LIBDIR=lib")
|
||||
|
||||
def build():
|
||||
shelltools.cd("build_")
|
||||
cmaketools.make()
|
||||
|
||||
def install():
|
||||
shelltools.cd("build_")
|
||||
autotools.rawInstall("DESTDIR=%s" %get.installDIR())
|
||||
|
||||
shelltools.cd("..")
|
||||
pisitools.dodoc("COPYING", "README")
|
||||
|
||||
Executable
+58
@@ -0,0 +1,58 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>codec2</Name>
|
||||
<Homepage>http://www.rowetel.com/?page_id=452</Homepage>
|
||||
<Packager>
|
||||
<Name>Mathias Freire</Name>
|
||||
<Email>mathiasfreire45@gmail.com</Email>
|
||||
</Packager>
|
||||
<License>LGPL</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Low bit rate open source speech codec</Summary>
|
||||
<Description>Codec 2 is an open source speech codec designed for communications quality speech between 700 and 3200 bit/s. The main application is low bandwidth HF/VHF digital radio.</Description>
|
||||
<Archive sha1sum="aa341c6d8d70407cb0b842fb7101ddceb29067cf" type="tarxz">https://hobbes1069.fedorapeople.org/freetel/codec2/codec2-0.8.1.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>speex-devel</Dependency>
|
||||
<Dependency>portaudio-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>codec2</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>speex</Dependency>
|
||||
<Dependency>portaudio</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>codec2-devel</Name>
|
||||
<Summary>Header files for codec2.</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">codec2</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/include</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2020-01-12</Date>
|
||||
<Version>0.8.1</Version>
|
||||
<Comment>First release.</Comment>
|
||||
<Name>Idris Kalp</Name>
|
||||
<Email>idriskalp@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
from pisi.actionsapi import shelltools
|
||||
|
||||
WorkDir="gsm-1.0-pl13"
|
||||
WorkDir="gsm-1.0-pl18"
|
||||
|
||||
def setup():
|
||||
multilib = " -m32" if get.buildTYPE() == "emul32" else ""
|
||||
@@ -20,12 +20,23 @@ def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
#if get.buildTYPE() == "emul32":
|
||||
#autotools.rawInstall("DESTDIR=%s bindir=/emul32 libdir=/usr/lib32" % get.installDIR())
|
||||
#pisitools.remove("/usr/lib32/libgsm.a")
|
||||
#return
|
||||
#else:
|
||||
#autotools.rawInstall("DESTDIR=%s bindir=/usr/bin" % get.installDIR())
|
||||
|
||||
if get.buildTYPE() == "emul32":
|
||||
autotools.rawInstall("DESTDIR=%s bindir=/emul32 libdir=/usr/lib32" % get.installDIR())
|
||||
pisitools.remove("/usr/lib32/libgsm.a")
|
||||
pisitools.insinto("/usr/lib32", "lib/*")
|
||||
#pisitools.remove("/usr/lib32/libgsm.a")
|
||||
return
|
||||
else:
|
||||
autotools.rawInstall("DESTDIR=%s bindir=/usr/bin" % get.installDIR())
|
||||
pisitools.insinto("/usr/bin", "bin/*")
|
||||
pisitools.insinto("/usr/lib", "lib/*")
|
||||
pisitools.insinto("/usr/include/gsm", "inc/*")
|
||||
pisitools.insinto("/usr/share/man/man3", "man/*")
|
||||
pisitools.domove("/usr/share/man/man3/toast.1", "/usr/share/man/man1")
|
||||
|
||||
for bin in ["tcat","untoast"]:
|
||||
pisitools.remove("/usr/bin/%s" % bin)
|
||||
@@ -36,6 +47,6 @@ def install():
|
||||
# pisitools.removeDir("/usr/include/gsm")
|
||||
|
||||
# No static libs
|
||||
pisitools.remove("/usr/lib/libgsm.a")
|
||||
#pisitools.remove("/usr/lib/libgsm.a")
|
||||
|
||||
pisitools.dodoc("ChangeLog", "COPYRIGHT", "MACHINES", "MANIFEST", "README")
|
||||
|
||||
@@ -0,0 +1,189 @@
|
||||
--- Makefile 2006-04-26 15:14:26.000000000 -0400
|
||||
+++ Makefile 2010-06-19 16:53:25.000000000 -0400
|
||||
@@ -96,11 +96,11 @@
|
||||
# Other tools
|
||||
|
||||
SHELL = /bin/sh
|
||||
-LN = ln
|
||||
+LN = ln -s -f
|
||||
BASENAME = basename
|
||||
AR = ar
|
||||
ARFLAGS = cr
|
||||
-RMFLAGS =
|
||||
+RMFLAGS = -f
|
||||
FIND = find
|
||||
COMPRESS = compress
|
||||
COMPRESSFLAGS =
|
||||
@@ -139,7 +139,7 @@
|
||||
|
||||
# Targets
|
||||
|
||||
-LIBGSM = $(LIB)/libgsm.a
|
||||
+LIBGSMSO = $(LIB)/libgsm.so
|
||||
|
||||
TOAST = $(BIN)/toast
|
||||
UNTOAST = $(BIN)/untoast
|
||||
@@ -257,7 +257,7 @@
|
||||
# Install targets
|
||||
|
||||
GSM_INSTALL_TARGETS = \
|
||||
- $(GSM_INSTALL_LIB)/libgsm.a \
|
||||
+ $(GSM_INSTALL_LIB)/libgsm.so \
|
||||
$(GSM_INSTALL_INC)/gsm.h \
|
||||
$(GSM_INSTALL_MAN)/gsm.3 \
|
||||
$(GSM_INSTALL_MAN)/gsm_explode.3 \
|
||||
@@ -279,7 +279,7 @@
|
||||
|
||||
# Target rules
|
||||
|
||||
-all: $(LIBGSM) $(TOAST) $(TCAT) $(UNTOAST)
|
||||
+all: $(LIBGSMSO) $(TOAST) $(TCAT) $(UNTOAST)
|
||||
@-echo $(ROOT): Done.
|
||||
|
||||
tst: $(TST)/lin2cod $(TST)/cod2lin $(TOAST) $(TST)/test-result
|
||||
@@ -299,24 +299,23 @@
|
||||
|
||||
# The basic API: libgsm
|
||||
|
||||
-$(LIBGSM): $(LIB) $(GSM_OBJECTS)
|
||||
- -rm $(RMFLAGS) $(LIBGSM)
|
||||
- $(AR) $(ARFLAGS) $(LIBGSM) $(GSM_OBJECTS)
|
||||
- $(RANLIB) $(LIBGSM)
|
||||
-
|
||||
+$(LIBGSMSO): $(LIB) $(GSM_OBJECTS)
|
||||
+ $(LD) -shared -Wl,-soname,libgsm.so.1 -o $@.1.0.13 $(GSM_OBJECTS)
|
||||
+ $(LN) libgsm.so.1.0.13 $(LIBGSMSO).1
|
||||
+ $(LN) libgsm.so.1.0.13 $(LIBGSMSO)
|
||||
|
||||
# Toast, Untoast and Tcat -- the compress-like frontends to gsm.
|
||||
|
||||
-$(TOAST): $(BIN) $(TOAST_OBJECTS) $(LIBGSM)
|
||||
- $(LD) $(LFLAGS) -o $(TOAST) $(TOAST_OBJECTS) $(LIBGSM) $(LDLIB)
|
||||
+$(TOAST): $(BIN) $(TOAST_OBJECTS) $(LIBGSMSO)
|
||||
+ $(LD) $(LFLAGS) -o $(TOAST) $(TOAST_OBJECTS) $(LIBGSMSO) $(LDLIB)
|
||||
|
||||
$(UNTOAST): $(BIN) $(TOAST)
|
||||
-rm $(RMFLAGS) $(UNTOAST)
|
||||
- $(LN) $(TOAST) $(UNTOAST)
|
||||
+ $(LN) toast $(UNTOAST)
|
||||
|
||||
$(TCAT): $(BIN) $(TOAST)
|
||||
-rm $(RMFLAGS) $(TCAT)
|
||||
- $(LN) $(TOAST) $(TCAT)
|
||||
+ $(LN) toast $(TCAT)
|
||||
|
||||
|
||||
# The local bin and lib directories
|
||||
@@ -351,53 +350,54 @@
|
||||
fi
|
||||
|
||||
$(TOAST_INSTALL_BIN)/toast: $(TOAST)
|
||||
- -rm $@
|
||||
+ -rm $(RMFLAGS) $@
|
||||
cp $(TOAST) $@
|
||||
chmod 755 $@
|
||||
|
||||
$(TOAST_INSTALL_BIN)/untoast: $(TOAST_INSTALL_BIN)/toast
|
||||
- -rm $@
|
||||
- ln $? $@
|
||||
+ -rm $(RMFLAGS) $@
|
||||
+ $(LN) toast $@
|
||||
|
||||
$(TOAST_INSTALL_BIN)/tcat: $(TOAST_INSTALL_BIN)/toast
|
||||
- -rm $@
|
||||
- ln $? $@
|
||||
+ -rm $(RMFLAGS) $@
|
||||
+ $(LN) toast $@
|
||||
|
||||
$(TOAST_INSTALL_MAN)/toast.1: $(MAN)/toast.1
|
||||
- -rm $@
|
||||
+ -rm $(RMFLAGS) $@
|
||||
cp $? $@
|
||||
chmod 444 $@
|
||||
|
||||
$(GSM_INSTALL_MAN)/gsm.3: $(MAN)/gsm.3
|
||||
- -rm $@
|
||||
+ -rm $(RMFLAGS) $@
|
||||
cp $? $@
|
||||
chmod 444 $@
|
||||
|
||||
$(GSM_INSTALL_MAN)/gsm_option.3: $(MAN)/gsm_option.3
|
||||
- -rm $@
|
||||
+ -rm $(RMFLAGS) $@
|
||||
cp $? $@
|
||||
chmod 444 $@
|
||||
|
||||
$(GSM_INSTALL_MAN)/gsm_explode.3: $(MAN)/gsm_explode.3
|
||||
- -rm $@
|
||||
+ -rm $(RMFLAGS) $@
|
||||
cp $? $@
|
||||
chmod 444 $@
|
||||
|
||||
$(GSM_INSTALL_MAN)/gsm_print.3: $(MAN)/gsm_print.3
|
||||
- -rm $@
|
||||
+ -rm $(RMFLAGS) $@
|
||||
cp $? $@
|
||||
chmod 444 $@
|
||||
|
||||
$(GSM_INSTALL_INC)/gsm.h: $(INC)/gsm.h
|
||||
- -rm $@
|
||||
- cp $? $@
|
||||
- chmod 444 $@
|
||||
-
|
||||
-$(GSM_INSTALL_LIB)/libgsm.a: $(LIBGSM)
|
||||
- -rm $@
|
||||
+ -rm $(RMFLAGS) $@
|
||||
cp $? $@
|
||||
chmod 444 $@
|
||||
|
||||
+$(GSM_INSTALL_LIB)/libgsm.so: $(LIBGSMSO)
|
||||
+ -rm $(RMFLAGS) $@ $@.1 $@.1.0.13
|
||||
+ cp $?.1.0.13 $@.1.0.13
|
||||
+ chmod 755 $@.1.0.13
|
||||
+ $(LN) libgsm.so.1.0.13 $@
|
||||
+ $(LN) libgsm.so.1.0.13 $@.1
|
||||
|
||||
# Distribution
|
||||
|
||||
@@ -425,7 +425,7 @@
|
||||
-print | xargs rm $(RMFLAGS)
|
||||
|
||||
clean: semi-clean
|
||||
- -rm $(RMFLAGS) $(LIBGSM) $(ADDTST)/add \
|
||||
+ -rm $(RMFLAGS) $(LIBGSMSO)* $(ADDTST)/add \
|
||||
$(TOAST) $(TCAT) $(UNTOAST) \
|
||||
$(ROOT)/gsm-1.0.tar.Z
|
||||
|
||||
@@ -473,22 +473,22 @@
|
||||
$(TST)/test-result: $(TST)/lin2cod $(TST)/cod2lin $(TOAST) $(TST)/run
|
||||
( cd $(TST); ./run )
|
||||
|
||||
-$(TST)/lin2txt: $(TST)/lin2txt.o $(LIBGSM)
|
||||
+$(TST)/lin2txt: $(TST)/lin2txt.o $(LIBGSMSO)
|
||||
$(LD) $(LFLAGS) -o $(TST)/lin2txt \
|
||||
- $(TST)/lin2txt.o $(LIBGSM) $(LDLIB)
|
||||
+ $(TST)/lin2txt.o $(LIBGSMSO) $(LDLIB)
|
||||
|
||||
-$(TST)/lin2cod: $(TST)/lin2cod.o $(LIBGSM)
|
||||
+$(TST)/lin2cod: $(TST)/lin2cod.o $(LIBGSMSO)
|
||||
$(LD) $(LFLAGS) -o $(TST)/lin2cod \
|
||||
- $(TST)/lin2cod.o $(LIBGSM) $(LDLIB)
|
||||
+ $(TST)/lin2cod.o $(LIBGSMSO) $(LDLIB)
|
||||
|
||||
-$(TST)/gsm2cod: $(TST)/gsm2cod.o $(LIBGSM)
|
||||
+$(TST)/gsm2cod: $(TST)/gsm2cod.o $(LIBGSMSO)
|
||||
$(LD) $(LFLAGS) -o $(TST)/gsm2cod \
|
||||
- $(TST)/gsm2cod.o $(LIBGSM) $(LDLIB)
|
||||
+ $(TST)/gsm2cod.o $(LIBGSMSO) $(LDLIB)
|
||||
|
||||
-$(TST)/cod2txt: $(TST)/cod2txt.o $(LIBGSM)
|
||||
+$(TST)/cod2txt: $(TST)/cod2txt.o $(LIBGSMSO)
|
||||
$(LD) $(LFLAGS) -o $(TST)/cod2txt \
|
||||
- $(TST)/cod2txt.o $(LIBGSM) $(LDLIB)
|
||||
+ $(TST)/cod2txt.o $(LIBGSMSO) $(LDLIB)
|
||||
|
||||
-$(TST)/cod2lin: $(TST)/cod2lin.o $(LIBGSM)
|
||||
+$(TST)/cod2lin: $(TST)/cod2lin.o $(LIBGSMSO)
|
||||
$(LD) $(LFLAGS) -o $(TST)/cod2lin \
|
||||
- $(TST)/cod2lin.o $(LIBGSM) $(LDLIB)
|
||||
+ $(TST)/cod2lin.o $(LIBGSMSO) $(LDLIB)
|
||||
@@ -0,0 +1,13 @@
|
||||
--- a/Makefile 2019-10-27 14:23:53.080463986 +0300
|
||||
+++ b/Makefile 2019-10-27 14:25:08.992459854 +0300
|
||||
@@ -43,8 +43,8 @@
|
||||
# CC = /usr/lang/acc
|
||||
# CCFLAGS = -c -O
|
||||
|
||||
-CC = gcc -ansi -pedantic
|
||||
-CCFLAGS = -c -O2 -DNeedFunctionPrototypes=1 -Wall -Wno-comment
|
||||
+CC = pardusCC -ansi -pedantic
|
||||
+CCFLAGS = -c pardusCFLAGS -fPIC -D_REENTRANT -DNeedFunctionPrototypes=1
|
||||
|
||||
LD = $(CC)
|
||||
|
||||
@@ -12,14 +12,16 @@
|
||||
<IsA>library</IsA>
|
||||
<Summary>Lossy speech compression library and tool</Summary>
|
||||
<Description>Gsm is an implementation of the final draft GSM 06.10 standard for full-rate speech transcoding</Description>
|
||||
<Archive sha1sum="668b0a180039a50d379b3d5a22e78da4b1d90afc" type="targz">https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/osxwinebuilder/gsm-1.0.13.tar.gz</Archive>
|
||||
<Archive sha1sum="d36580154ea21c1baa6772193365f31d496624b6" type="targz">http://www.quut.com/gsm/gsm-1.0.18.tar.gz</Archive>
|
||||
<Patches>
|
||||
<Patch level="1">gsm-1.0.10-dyn.patch</Patch>
|
||||
<Patch level="1">gsm-1.0-pl10-includes.patch</Patch>
|
||||
<Patch>gsm-1.0-pl10-shared.diff</Patch>
|
||||
<Patch>gsm-1.0-pl10-add-includefile.patch</Patch>
|
||||
<Patch level="1">pardusflags.patch</Patch>
|
||||
<!-- <Patch>gsm-1.0-pl10-shared.diff</Patch> -->
|
||||
<!-- <Patch>gsm-1.0-pl10-add-includefile.patch</Patch> -->
|
||||
<!-- <Patch level="1">pardusflags.patch</Patch> -->
|
||||
<Patch level="1">gsm-1.0.12-64bit.patch</Patch>
|
||||
<Patch level="0">gsm-shared.patch</Patch>
|
||||
<Patch level="1">pardusflags_1.0.18.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
@@ -64,6 +66,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Date>2019-10-27</Date>
|
||||
<Version>1.0.18</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2018-08-31</Date>
|
||||
<Version>1.0.13</Version>
|
||||
|
||||
@@ -15,8 +15,9 @@ def setup():
|
||||
shelltools.system("./waf configure \
|
||||
--prefix=/usr \
|
||||
--libdir=/usr/lib \
|
||||
--firewire \
|
||||
--alsa ")
|
||||
--alsa \
|
||||
--firewire=no \
|
||||
")
|
||||
|
||||
def build():
|
||||
shelltools.system("./waf build -v")
|
||||
@@ -29,4 +30,4 @@ def install():
|
||||
|
||||
shelltools.chmod("%s/usr/lib/jack/*.so*" % get.installDIR(), 0755)
|
||||
|
||||
pisitools.dodoc("ChangeLog", "README*", "TODO")
|
||||
pisitools.dodoc("ChangeLog.rst", "README*")
|
||||
|
||||
@@ -13,11 +13,11 @@
|
||||
<IsA>service</IsA>
|
||||
<Summary>A low-latency audio server</Summary>
|
||||
<Description>JACK is a low-latency audio server written for POSIX conformant operating systems. It can connect a number of different applications to an audio device, as well as allowing them to share audio between themselves.</Description>
|
||||
<Archive sha1sum="8ab6329c6a107cdf370c40afac154370b406437d" type="targz">https://github.com/jackaudio/jack2/archive/v1.9.12.tar.gz</Archive>
|
||||
<Archive sha1sum="08059d188b7653d067509aac36ebf45d0e84e5bd" type="targz">https://github.com/jackaudio/jack2/archive/v1.9.14.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>libsamplerate-devel</Dependency>
|
||||
<Dependency>alsa-lib-devel</Dependency>
|
||||
<Dependency>libffado-devel</Dependency>
|
||||
<!-- <Dependency>libffado-devel</Dependency> -->
|
||||
<Dependency>celt-devel</Dependency>
|
||||
<Dependency>pkgconfig</Dependency>
|
||||
<Dependency>eigen3</Dependency>
|
||||
@@ -38,7 +38,7 @@
|
||||
<Dependency>alsa-lib</Dependency>
|
||||
<Dependency>libsamplerate</Dependency>
|
||||
<Dependency>libsndfile</Dependency>
|
||||
<Dependency>libffado</Dependency>
|
||||
<!-- <Dependency>libffado</Dependency> -->
|
||||
<Dependency>readline</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>celt</Dependency>
|
||||
@@ -85,6 +85,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Date>2020-01-12</Date>
|
||||
<Version>1.9.14</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2018-08-03</Date>
|
||||
<Version>1.9.12</Version>
|
||||
|
||||
Executable
+29
@@ -0,0 +1,29 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/copyleft/gpl.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import cmaketools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
shelltools.system("mkdir build_")
|
||||
shelltools.cd("build_")
|
||||
|
||||
shelltools.system("cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_LIBDIR=lib")
|
||||
|
||||
def build():
|
||||
shelltools.cd("build_")
|
||||
cmaketools.make()
|
||||
|
||||
def install():
|
||||
shelltools.cd("build_")
|
||||
autotools.rawInstall("DESTDIR=%s" %get.installDIR())
|
||||
|
||||
shelltools.cd("..")
|
||||
pisitools.dodoc("changes.txt", "design.txt", "gme.txt", "license*", "readme.txt")
|
||||
|
||||
Executable
+54
@@ -0,0 +1,54 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libgme</Name>
|
||||
<Homepage>https://bitbucket.org/mpyne/game-music-emu/wiki/Home</Homepage>
|
||||
<Packager>
|
||||
<Name>Mathias Freire</Name>
|
||||
<Email>mathiasfreire45@gmail.com</Email>
|
||||
</Packager>
|
||||
<License>LGPL</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Video game music file emulation/playback library</Summary>
|
||||
<Description>game-music-emu is a collection of audio emulators for assorted video game console hardware. It was originally developed by Blargg and used as the basis for several other software products before being converted into a library.</Description>
|
||||
<Archive sha1sum="9047b774bd5623adae6f5412d02d70cf72070d8f" type="tarxz">https://bitbucket.org/mpyne/game-music-emu/downloads/game-music-emu-0.6.2.tar.xz</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libgme</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libgcc</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libgme-devel</Name>
|
||||
<Summary>Header files for libgme.</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">libgme</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2020-01-12</Date>
|
||||
<Version>0.6.2</Version>
|
||||
<Comment>First release.</Comment>
|
||||
<Name>Idris Kalp</Name>
|
||||
<Email>idriskalp@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
|
||||
|
||||
|
||||
@@ -46,6 +46,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Date>2020-01-12</Date>
|
||||
<Version>0.1.9</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2018-08-03</Date>
|
||||
<Version>0.1.9</Version>
|
||||
|
||||
@@ -50,6 +50,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Date>2020-01-12</Date>
|
||||
<Version>190600.20161030</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2018-08-15</Date>
|
||||
<Version>190600.20161030</Version>
|
||||
|
||||
Executable
+29
@@ -0,0 +1,29 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/copyleft/gpl.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import cmaketools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
shelltools.system("mkdir build_")
|
||||
shelltools.cd("build_")
|
||||
|
||||
shelltools.system("cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_LIBDIR=lib -DBUILD_SHARED_LIBS=1 -DENABLE_TESTS=0")
|
||||
|
||||
def build():
|
||||
shelltools.cd("build_")
|
||||
cmaketools.make()
|
||||
|
||||
def install():
|
||||
shelltools.cd("build_")
|
||||
autotools.rawInstall("DESTDIR=%s" %get.installDIR())
|
||||
|
||||
shelltools.cd("..")
|
||||
pisitools.dodoc("AUTHORS", "CHANGELOG", "README.md")
|
||||
|
||||
Executable
+57
@@ -0,0 +1,57 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>aom</Name>
|
||||
<Homepage>https://aomedia.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>Mathias Freire</Name>
|
||||
<Email>mathiasfreire45@gmail.com</Email>
|
||||
</Packager>
|
||||
<License>BSD</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Alliance for Open Media video codec</Summary>
|
||||
<Description>aom is the AOMedia video encoder for AV1, an open source and royalty-free video codec. aom can save about 30% bitrate compared to VP9 and H.265 / HEVC, and about 50% over H.264, while retaining the same visual quality.</Description>
|
||||
<Archive sha1sum="e621d7ecc8da8c8ab86ce50f0b5f51b7278167e8" type="tarxz">https://sourceforge.net/projects/pisilinux/files/source/aom-20200112.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>ninja</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>aom</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libgcc</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>aom-devel</Name>
|
||||
<Summary>Header files for aom.</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">aom</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2020-01-12</Date>
|
||||
<Version>1.0.0_20200112</Version>
|
||||
<Comment>First release.</Comment>
|
||||
<Name>Idris Kalp</Name>
|
||||
<Email>idriskalp@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
|
||||
|
||||
|
||||
Executable
+22
@@ -0,0 +1,22 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# 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 mesontools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
mesontools.configure()
|
||||
|
||||
def build():
|
||||
mesontools.build()
|
||||
|
||||
def install():
|
||||
mesontools.install()
|
||||
pisitools.dodoc("COPYING", "README.md", "NEWS")
|
||||
|
||||
Executable
+58
@@ -0,0 +1,58 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>dav1d</Name>
|
||||
<Homepage>https://code.videolan.org/videolan/dav1d/</Homepage>
|
||||
<Packager>
|
||||
<Name>Mathias Freire</Name>
|
||||
<Email>mathiasfreire45@gmail.com</Email>
|
||||
</Packager>
|
||||
<License>BSD</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>AV1 cross-platform decoder focused on speed and correctness</Summary>
|
||||
<Description>dav1d is a new AV1 cross-platform decoder, open-source, and focused on speed and correctness.</Description>
|
||||
<Archive sha1sum="a3f16d7c7c47231249edc39667baae17442f781e" type="tarxz">http://downloads.videolan.org/pub/videolan/dav1d/0.5.2/dav1d-0.5.2.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>ninja</Dependency>
|
||||
<Dependency>meson</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>dav1d</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libgcc</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>dav1d-devel</Name>
|
||||
<Summary>Header files for dav1d.</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">dav1d</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2020-01-12</Date>
|
||||
<Version>0.5.2</Version>
|
||||
<Comment>First release.</Comment>
|
||||
<Name>Idris Kalp</Name>
|
||||
<Email>idriskalp@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
|
||||
|
||||
|
||||
Executable
+30
@@ -0,0 +1,30 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/copyleft/gpl.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import cmaketools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
shelltools.system("patch -p1 --binary < davs2-1.6-gcc8-fix.patch")
|
||||
shelltools.cd("build/linux")
|
||||
autotools.configure("--extra-ldflags='-Wl,-z,noexecstack' \
|
||||
--chroma-format='all' \
|
||||
--enable-shared \
|
||||
")
|
||||
|
||||
def build():
|
||||
shelltools.cd("build/linux")
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
shelltools.cd("build/linux")
|
||||
autotools.rawInstall("DESTDIR=%s" %get.installDIR())
|
||||
shelltools.cd("../..")
|
||||
pisitools.dodoc("COPYING", "README.md")
|
||||
|
||||
@@ -0,0 +1,180 @@
|
||||
From 00ef2c8062a7f7d7265d933676fb5cc60f1ea659 Mon Sep 17 00:00:00 2001
|
||||
From: Daniel Bermond <danielbermond@yahoo.com>
|
||||
Date: Tue, 20 Nov 2018 16:54:25 +0000
|
||||
Subject: [PATCH] Make AVX symbols to be strictly visible (fix build with gcc8)
|
||||
|
||||
_mm256_insertf128_si256 and _mm256_castsi128_si256 are undeclared
|
||||
in the scope of source/common/vec/intrinsic.h, which seems to be
|
||||
strictly not permitted by gcc8.
|
||||
|
||||
Fixes #9
|
||||
---
|
||||
source/common/vec/intrinsic_deblock_avx2.cc | 5 ++---
|
||||
source/common/vec/intrinsic_idct_avx2.cc | 6 +++---
|
||||
source/common/vec/intrinsic_inter_pred.cc | 6 +++---
|
||||
source/common/vec/intrinsic_inter_pred_avx2.cc | 7 ++++---
|
||||
source/common/vec/intrinsic_intra-pred_avx2.cc | 6 +++---
|
||||
source/common/vec/intrinsic_pixel_avx.cc | 6 +++---
|
||||
source/common/vec/intrinsic_sao_avx2.cc | 6 +++---
|
||||
7 files changed, 21 insertions(+), 21 deletions(-)
|
||||
|
||||
diff --git a/source/common/vec/intrinsic_deblock_avx2.cc b/source/common/vec/intrinsic_deblock_avx2.cc
|
||||
index b87e472..ca9534e 100644
|
||||
--- a/source/common/vec/intrinsic_deblock_avx2.cc
|
||||
+++ b/source/common/vec/intrinsic_deblock_avx2.cc
|
||||
@@ -30,15 +30,14 @@
|
||||
* For more information, contact us at sswang @ pku.edu.cn.
|
||||
*/
|
||||
|
||||
-#include "../common.h"
|
||||
-#include "intrinsic.h"
|
||||
-
|
||||
#include <mmintrin.h>
|
||||
#include <emmintrin.h>
|
||||
#include <tmmintrin.h>
|
||||
#include <smmintrin.h>
|
||||
#include <immintrin.h>
|
||||
|
||||
+#include "../common.h"
|
||||
+#include "intrinsic.h"
|
||||
|
||||
#if !HIGH_BIT_DEPTH
|
||||
__m128i c_0_128;
|
||||
diff --git a/source/common/vec/intrinsic_idct_avx2.cc b/source/common/vec/intrinsic_idct_avx2.cc
|
||||
index 0b40fde..ee5384d 100644
|
||||
--- a/source/common/vec/intrinsic_idct_avx2.cc
|
||||
+++ b/source/common/vec/intrinsic_idct_avx2.cc
|
||||
@@ -30,15 +30,15 @@
|
||||
* For more information, contact us at sswang @ pku.edu.cn.
|
||||
*/
|
||||
|
||||
-#include "../common.h"
|
||||
-#include "intrinsic.h"
|
||||
-
|
||||
#include <mmintrin.h>
|
||||
#include <emmintrin.h>
|
||||
#include <tmmintrin.h>
|
||||
#include <smmintrin.h>
|
||||
#include <immintrin.h>
|
||||
|
||||
+#include "../common.h"
|
||||
+#include "intrinsic.h"
|
||||
+
|
||||
/* disable warnings */
|
||||
#pragma warning(disable:4127) // warning C4127: 条件表达式是常量
|
||||
|
||||
diff --git a/source/common/vec/intrinsic_inter_pred.cc b/source/common/vec/intrinsic_inter_pred.cc
|
||||
index 46c0da8..55ff6a0 100644
|
||||
--- a/source/common/vec/intrinsic_inter_pred.cc
|
||||
+++ b/source/common/vec/intrinsic_inter_pred.cc
|
||||
@@ -30,15 +30,15 @@
|
||||
* For more information, contact us at sswang @ pku.edu.cn.
|
||||
*/
|
||||
|
||||
-#include "../common.h"
|
||||
-#include "intrinsic.h"
|
||||
-
|
||||
#include <mmintrin.h>
|
||||
#include <emmintrin.h>
|
||||
#include <tmmintrin.h>
|
||||
#include <smmintrin.h>
|
||||
#include <immintrin.h>
|
||||
|
||||
+#include "../common.h"
|
||||
+#include "intrinsic.h"
|
||||
+
|
||||
#if !HIGH_BIT_DEPTH
|
||||
/* ---------------------------------------------------------------------------
|
||||
*/
|
||||
diff --git a/source/common/vec/intrinsic_inter_pred_avx2.cc b/source/common/vec/intrinsic_inter_pred_avx2.cc
|
||||
index 6f35771..05f6957 100644
|
||||
--- a/source/common/vec/intrinsic_inter_pred_avx2.cc
|
||||
+++ b/source/common/vec/intrinsic_inter_pred_avx2.cc
|
||||
@@ -30,14 +30,15 @@
|
||||
* For more information, contact us at sswang @ pku.edu.cn.
|
||||
*/
|
||||
|
||||
-#include "../common.h"
|
||||
-#include "intrinsic.h"
|
||||
-
|
||||
#include <mmintrin.h>
|
||||
#include <emmintrin.h>
|
||||
#include <tmmintrin.h>
|
||||
#include <smmintrin.h>
|
||||
#include <immintrin.h>
|
||||
+
|
||||
+#include "../common.h"
|
||||
+#include "intrinsic.h"
|
||||
+
|
||||
#pragma warning(disable:4127) // warning C4127: 条件表达式是常量
|
||||
|
||||
#if !HIGH_BIT_DEPTH
|
||||
diff --git a/source/common/vec/intrinsic_intra-pred_avx2.cc b/source/common/vec/intrinsic_intra-pred_avx2.cc
|
||||
index 6440929..1357bdb 100644
|
||||
--- a/source/common/vec/intrinsic_intra-pred_avx2.cc
|
||||
+++ b/source/common/vec/intrinsic_intra-pred_avx2.cc
|
||||
@@ -30,15 +30,15 @@
|
||||
* For more information, contact us at sswang @ pku.edu.cn.
|
||||
*/
|
||||
|
||||
-#include "../common.h"
|
||||
-#include "intrinsic.h"
|
||||
-
|
||||
#include <mmintrin.h>
|
||||
#include <emmintrin.h>
|
||||
#include <tmmintrin.h>
|
||||
#include <smmintrin.h>
|
||||
#include <immintrin.h>
|
||||
|
||||
+#include "../common.h"
|
||||
+#include "intrinsic.h"
|
||||
+
|
||||
#if !HIGH_BIT_DEPTH
|
||||
|
||||
void intra_pred_ver_avx(pel_t *src, pel_t *dst, int i_dst, int dir_mode, int bsx, int bsy)
|
||||
diff --git a/source/common/vec/intrinsic_pixel_avx.cc b/source/common/vec/intrinsic_pixel_avx.cc
|
||||
index 813a36f..fba7e46 100644
|
||||
--- a/source/common/vec/intrinsic_pixel_avx.cc
|
||||
+++ b/source/common/vec/intrinsic_pixel_avx.cc
|
||||
@@ -30,15 +30,15 @@
|
||||
* For more information, contact us at sswang @ pku.edu.cn.
|
||||
*/
|
||||
|
||||
-#include "../common.h"
|
||||
-#include "intrinsic.h"
|
||||
-
|
||||
#include <mmintrin.h>
|
||||
#include <emmintrin.h>
|
||||
#include <tmmintrin.h>
|
||||
#include <smmintrin.h>
|
||||
#include <immintrin.h>
|
||||
|
||||
+#include "../common.h"
|
||||
+#include "intrinsic.h"
|
||||
+
|
||||
/* ---------------------------------------------------------------------------
|
||||
*/
|
||||
void *davs2_memzero_aligned_c_avx(void *dst, size_t n)
|
||||
diff --git a/source/common/vec/intrinsic_sao_avx2.cc b/source/common/vec/intrinsic_sao_avx2.cc
|
||||
index 11be4d3..bb0c4aa 100644
|
||||
--- a/source/common/vec/intrinsic_sao_avx2.cc
|
||||
+++ b/source/common/vec/intrinsic_sao_avx2.cc
|
||||
@@ -30,15 +30,15 @@
|
||||
* For more information, contact us at sswang @ pku.edu.cn.
|
||||
*/
|
||||
|
||||
-#include "../common.h"
|
||||
-#include "intrinsic.h"
|
||||
-
|
||||
#include <mmintrin.h>
|
||||
#include <emmintrin.h>
|
||||
#include <tmmintrin.h>
|
||||
#include <smmintrin.h>
|
||||
#include <immintrin.h>
|
||||
|
||||
+#include "../common.h"
|
||||
+#include "intrinsic.h"
|
||||
+
|
||||
#if !HIGH_BIT_DEPTH
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning(disable:4244) // TODO: 修正编译warning
|
||||
Executable
+57
@@ -0,0 +1,57 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>davs2</Name>
|
||||
<Homepage>https://github.com/pkuvcl/davs2/</Homepage>
|
||||
<Packager>
|
||||
<Name>Mathias Freire</Name>
|
||||
<Email>mathiasfreire45@gmail.com</Email>
|
||||
</Packager>
|
||||
<License>GPL</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary> Open-Source decoder of AVS2-P2/IEEE1857.4 video coding standard</Summary>
|
||||
<Description>davs2 is an open-source decoder of AVS2-P2/IEEE1857.4 video coding standard.</Description>
|
||||
<Archive sha1sum="640563a6d4bf98e8b8d67b727e92403cca9beb3d" type="targz">https://github.com/pkuvcl/davs2/archive/1.6.tar.gz</Archive>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile target="davs2-1.6-gcc8-fix.patch">davs2-1.6-gcc8-fix.patch</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>davs2</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libgcc</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>davs2-devel</Name>
|
||||
<Summary>Header files for davs2.</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">davs2</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2020-01-12</Date>
|
||||
<Version>1.6</Version>
|
||||
<Comment>First release.</Comment>
|
||||
<Name>Idris Kalp</Name>
|
||||
<Email>idriskalp@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user