xvid:moved into main for pisi 2.0

This commit is contained in:
2015-07-23 13:53:58 +03:00
parent 70a377714b
commit cb7a805567
3 changed files with 101 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
#!/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 autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
WorkDir = "xvidcore/build/generic"
def setup():
autotools.configure()
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
shelltools.cd("../..")
pisitools.insinto("/usr/share/doc/xvid/examples", "examples/*")
pisitools.dodoc("AUTHORS", "ChangeLog*", "README", "LICENSE", "TODO")
+67
View File
@@ -0,0 +1,67 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>xvid</Name>
<Homepage>http://www.xvid.org/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<IsA>library</IsA>
<Summary>High performance MPEG-4 video de-/encoding solution</Summary>
<Description>Xvid is a codec which makes it possible to compress movies too much while still maintaining the original image quality.</Description>
<Archive sha1sum="465763c92679ca230526d4890d17dbf6d6974b08" type="targz">http://downloads.xvid.org/downloads/xvidcore-1.3.3.tar.gz</Archive>
</Source>
<Package>
<Name>xvid</Name>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc/xvid</Path>
</Files>
</Package>
<Package>
<Name>xvid-devel</Name>
<RuntimeDependencies>
<Dependency release="current">xvid</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="doc">/usr/share/doc/xvid/examples</Path>
<Path fileType="header">/usr/include</Path>
</Files>
</Package>
<History>
<Update release="4">
<Date>2014-12-14</Date>
<Version>1.3.3</Version>
<Comment>Version bump.</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2014-05-22</Date>
<Version>1.3.2</Version>
<Comment>Rebuild</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2014-01-17</Date>
<Version>1.3.2</Version>
<Comment>Rebuild for 1.0</Comment>
<Name>Richard de Bruin</Name>
<Email>richdb@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-08-29</Date>
<Version>1.3.2</Version>
<Comment>First release</Comment>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
+9
View File
@@ -0,0 +1,9 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>xvid</Name>
<Summary xml:lang="tr">Yüksek performanslı bir MPEG-4 video kodlayıcı/çözücü</Summary>
<Description xml:lang="tr">Xvid videoları kalite kaybına neden olmadan yüksek oranlarda sıkıştırabilmeye olanak tanıyan bir kodlayıcıdır.</Description>
<Description xml:lang="es">Xvid es un codec que posibilita una alta compresión de peliculas, manteniendo la calidad original de la imagen.</Description>
</Source>
</PISI>