dvdauthor:first release

This commit is contained in:
alihanozturk
2016-06-25 12:03:06 +03:00
parent 53c7b92614
commit eb592969ff
4 changed files with 108 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
#!/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 shelltools
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
WorkDir = "dvdauthor"
def setup():
# disable ImageMagick, use GraphicsMagick
shelltools.export("MAGICKCONFIG", "/bin/true")
autotools.configure("--disable-rpath \
--enable-default-video-format=NTSC")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("TODO", "README", "ChangeLog", "NEWS")
@@ -0,0 +1,14 @@
diff --git a/src/compat.h b/src/compat.h
index 126dcd7..93de081 100644
--- a/src/compat.h
+++ b/src/compat.h
@@ -1,6 +1,8 @@
// basic headers
#define _GNU_SOURCE /* really just for strndup */
+#include "config.h"
+
#ifdef HAVE_STDBOOL_H
# include <stdbool.h>
#else
+60
View File
@@ -0,0 +1,60 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>dvdauthor</Name>
<Homepage>http://dvdauthor.sourceforge.net/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<IsA>app:console</IsA>
<Summary>A simple DVD tool</Summary>
<Description>dvdauthor is a set of simple tools to help you author a DVD.</Description>
<Archive sha1sum="a9636d165bf546e3e2b25b7397c33dbfa2895e6a" type="targz">http://sourceforge.net/projects/dvdauthor/files/dvdauthor/0.7.1/dvdauthor-0.7.1.tar.gz</Archive>
<BuildDependencies>
<Dependency>fribidi-devel</Dependency>
<Dependency>libdvdread-devel</Dependency>
<Dependency>imagemagick-devel</Dependency>
<Dependency>GraphicsMagick-devel</Dependency>
<Dependency>fontconfig-devel</Dependency>
<Dependency>freetype-devel</Dependency>
<Dependency>libpng-devel</Dependency>
<Dependency>libxml2-devel</Dependency>
</BuildDependencies>
<Patches>
<Patch>config.patch</Patch>
</Patches>
</Source>
<Package>
<Name>dvdauthor</Name>
<RuntimeDependencies>
<Dependency>libpng</Dependency>
<Dependency>fribidi</Dependency>
<Dependency>libxml2</Dependency>
<Dependency>freetype</Dependency>
<Dependency>fontconfig</Dependency>
<Dependency>libdvdread</Dependency>
<Dependency>GraphicsMagick</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="data">/usr/share</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2016-06-25</Date>
<Version>0.7.1</Version>
<Comment>First release</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>dvdauthor</Name>
<Summary xml:lang="tr">Basit bir DVD yaratma aracı</Summary>
<Description xml:lang="tr">dvdauthor DVD oynatıcıya takıldığında sorunsuzca oynatılabilecek bir DVD üretebilen bir uygulamadır.</Description>
</Source>
</PISI>