This commit is contained in:
4fury-c3440d8
2020-12-06 17:56:01 +00:00
parent 53ba4fd611
commit 5c7ad413e0
15 changed files with 688 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def build():
autotools.make("prefix=/usr")
def install():
autotools.rawInstall("DESTDIR=%s prefix=/usr" % get.installDIR())
pisitools.dodoc("README")
+57
View File
@@ -0,0 +1,57 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>libpcd</Name>
<Homepage>https://www.kraxel.org/blog/linux/libpcd/</Homepage>
<Packager>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Packager>
<License>GPLv2</License>
<IsA>library</IsA>
<PartOf>multimedia.graphics</PartOf>
<Summary>libpcd is a tiny library for decoding PhotoCD images.</Summary>
<Description>
libpcd is a tiny library for decoding PhotoCD images. It used to come bundled with xpcd, but I've decided to release it separately so other apps such as fbi and ida can use it too.
</Description>
<Archive sha1sum="df314c260ae6b82fc5c9ba6cc1f59506a1f1ad5b" type="targz">
https://www.kraxel.org/releases/libpcd/libpcd_1.0.1.tar.gz
</Archive>
<BuildDependencies>
<!-- <Dependency></Dependency> -->
</BuildDependencies>
</Source>
<Package>
<Name>libpcd</Name>
<RuntimeDependencies>
<!-- <Dependency></Dependency> -->
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share</Path>
</Files>
</Package>
<Package>
<Name>libpcd-devel</Name>
<RuntimeDependencies>
<Dependency release="current">libpcd</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2020-12-06</Date>
<Version>1.0.1</Version>
<Comment>First build.</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
</History>
</PISI>