Tweak the egg/depedencies

This commit is contained in:
Jaidyn Ann 2023-01-02 08:43:45 -06:00
parent 6ac7a6b535
commit c799d7a37c
2 changed files with 6 additions and 4 deletions

View File

@ -1,9 +1,8 @@
;; -*- Scheme -*-
((synopsis "Access to extended attributes")
(author "Jaidyn Ann")
(category net)
(category io)
(license "GPLv3")
(dependencies srfi-1 srfi-12)
(components (extension xattr)))
;; (csc-options "-O3" "-d1" "-X" "bind" "-s" "-k" "-emit-link-file" "xattr.link" "-o" "xattr_ext.o"))
;; (c-object xattr_ext)))

View File

@ -18,7 +18,10 @@
(module xattr
(get-xattr set-xattr remove-xattr list-xattr)
(import (chicken base) (chicken memory) srfi-1 scheme (chicken foreign) srfi-12)
(import scheme
(chicken base) (chicken foreign) (chicken memory)
srfi-1 srfi-12)
(foreign-declare "#include \"xattr_ext.c\"")