new package and package move
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
#!/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 cmaketools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
#WorkDir = "apfs-fuse-master"
|
||||
|
||||
def setup():
|
||||
shelltools.system("mv ../lzfse-lzfse-1.0 lzfse")
|
||||
shelltools.system("mv lzfse ./3rdparty/")
|
||||
shelltools.system("mkdir build")
|
||||
shelltools.cd("build")
|
||||
shelltools.system("cmake .. -DBUILDCMAKE_SHARED_LIBS:BOOL=OFF -DCMAKE_BUILD_TYPE=Release")
|
||||
|
||||
def build():
|
||||
shelltools.cd('build')
|
||||
cmaketools.make()
|
||||
|
||||
|
||||
def install():
|
||||
shelltools.cd('build')
|
||||
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
#pisitools.dodoc("LICENSE", "README.md")
|
||||
@@ -0,0 +1,50 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>apfs-fuse</Name>
|
||||
<Homepage>https://github.com/sgan81/apfs-fuse</Homepage>
|
||||
<Packager>
|
||||
<Name>Ali Cengiz Kurt</Name>
|
||||
<Email>alicengizkurt@gmail.com</Email>
|
||||
</Packager>
|
||||
<License>GPLv2+</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>A read-only FUSE driver for Apple's APFS</Summary>
|
||||
<Description>apfs-fuse is a read-only driver for the new Apple File System, APFS also supports software encrypted volumes and fusion drives. Firmlinks are not supported yet.</Description>
|
||||
<Archive sha1sum="7072df718a24ad34ad1853158f26b9f517677dc4" type="zip">https://github.com/sgan81/apfs-fuse/archive/refs/heads/master.zip</Archive>
|
||||
<Archive sha1sum="40f156053e34e8725f052d2d1590b6abd318f899" type="targz">https://github.com/lzfse/lzfse/archive/lzfse-1.0.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>fuse3-devel</Dependency>
|
||||
<Dependency>bzip2</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<Dependency>icu4c-devel</Dependency>
|
||||
<Dependency>attr-devel</Dependency>
|
||||
<Dependency>gcc</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>apfs-fuse</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>glibc</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/local/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2022-02-08</Date>
|
||||
<Version>0.1.0</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Ali Cengiz Kurt</Name>
|
||||
<Email>alicengizkurt@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>apfs-fuse</Name>
|
||||
<Summary>A read-only FUSE driver for Apple's APFS</Summary>
|
||||
<Description>apfs-fuse is a read-only driver for the new Apple File System, APFS also supports software encrypted volumes and fusion drives. Firmlinks are not supported yet.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user