git » physfs.git » commit 9ed6693

physfs 3.2.0

author Urja (ARMLFS builder)
2025-03-02 10:21:34 UTC
committer Urja (ARMLFS builder)
2025-03-02 10:21:34 UTC
parent bc3093f03ca83c1f1772f51521cb9536859897ab

physfs 3.2.0

.SRCINFO +2 -1
.gitignore +2 -0
PKGBUILD +4 -3

diff --git a/.SRCINFO b/.SRCINFO
index d61f792..796f0ba 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,10 @@
 pkgbase = physfs
 	pkgdesc = Portable and flexible I/O abstraction for archives
 	pkgver = 3.2.0
-	pkgrel = 2
+	pkgrel = 3
 	url = https://icculus.org/physfs
 	arch = x86_64
+	arch = armv7h
 	license = ZLIB
 	makedepends = cmake
 	makedepends = doxygen
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..a43258a
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+/src/
+/pkg/
diff --git a/PKGBUILD b/PKGBUILD
index aee23fe..64bc56d 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,9 +3,9 @@
 
 pkgname=physfs
 pkgver=3.2.0
-pkgrel=2
+pkgrel=3
 pkgdesc='Portable and flexible I/O abstraction for archives'
-arch=(x86_64)
+arch=(x86_64 'armv7h')
 url='https://icculus.org/physfs'
 license=(ZLIB)
 makedepends=(cmake doxygen git ninja)
@@ -29,9 +29,10 @@ package() {
   install -m644 build/docs/html/* "$pkgdir/usr/share/doc/physfs"
   install -m644 build/docs/man/man3/* "$pkgdir/usr/share/man/man3"
   for name in Deinit Free Init Malloc Realloc author deprecated description \
-    extension major minor opaque patch remove url; do
+    extension major minor opaque patch remove url version; do
     mv "$pkgdir/usr/share/man/man3/"{,PHYSFS_}$name.3
   done
   install -D -m644 $pkgname/LICENSE.txt \
     "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
 }
+