add package libunistring need for gnutls as dependency

This commit is contained in:
groni
2017-01-26 15:01:16 +01:00
parent 077f5ea779
commit 779487601b
6 changed files with 255 additions and 20 deletions
+22
View File
@@ -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 get
from pisi.actionsapi import pisitools
def setup():
autotools.configure("--prefix=/usr")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "README")
+51
View File
@@ -0,0 +1,51 @@
<PISI>
<Source>
<Name>libunistring</Name>
<Homepage>http://www.gnu.org/software/libunistring/</Homepage>
<Packager>
<Name>Stefan Gronewold</Name>
<Email>groni@pisilinux.org</Email>
</Packager>
<License>GPL</License>
<Summary>Library for manipulating Unicode strings and C strings</Summary>
<Description>Library for manipulating Unicode strings and C strings</Description>
<BuildDependencies>
<Dependency>glibc-devel</Dependency>
</BuildDependencies>
<Archive sha1sum="7d92687a50fea7702e8052486dfa25ffc361c9f3" type="tarxz">https://ftp.gnu.org/gnu/libunistring/libunistring-0.9.7.tar.xz</Archive>
</Source>
<Package>
<Name>libunistring</Name>
<Summary>Library for manipulating Unicode strings and C strings</Summary>
<RuntimeDependencies>
<Dependency>glibc</Dependency>
<Dependency>libgcc</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/info</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>libunistring-devel</Name>
<Summary>Development files for libunistring</Summary>
<RuntimeDependencies>
<Dependency release="current">libunistring</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2017-01-26</Date>
<Version>0.9.7</Version>
<Comment>First Release</Comment>
<Name>Stefan Gronewold</Name>
<Email>groni@pisilinux.org</Email>
</Update>
</History>
</PISI>