first commit

This commit is contained in:
ngn
2024-08-11 02:17:03 +03:00
commit ee34792885
1404 changed files with 13564 additions and 0 deletions

3
src/libisofs/.gitignore vendored Normal file
View File

@@ -0,0 +1,3 @@
.cache/
dist/
root/

2
src/libisofs/changes.md Normal file
View File

@@ -0,0 +1,2 @@
# 1.5.6
First version

19
src/libisofs/pkg.sh Normal file
View File

@@ -0,0 +1,19 @@
NAME="libisofs"
DESC="Library to create an ISO-9660 filesystem"
VERSION="1.5.6"
FILES=("http://files.libburnia-project.org/releases/libisofs-$VERSION.tar.gz")
HASHES=("9f996b317f622802f12d28d27891709f")
DEPENDS=()
PACKAGE() {
tar xf $NAME-$VERSION.tar.gz
cd $NAME-$VERSION
./configure --prefix=/usr \
--disable-static \
--enable-libacl \
--enable-xattr
make && make DESTDIR=$ROOTDIR install
cd .. && rm -rf $NAME-$VERSION
}