Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3c4ee2cf36 | |||
| 2419d958eb | |||
| 1ce89c9c1c | |||
| 40056295f8 |
15
amazon-s3.meta
Normal file
15
amazon-s3.meta
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
; author: Thomas Hintz
|
||||||
|
; email: t@thintz.com
|
||||||
|
; license: bsd
|
||||||
|
|
||||||
|
(
|
||||||
|
(license "BSD")
|
||||||
|
|
||||||
|
(category web)
|
||||||
|
|
||||||
|
(needs base64 sha1 http-client uri-common intarweb srfi-19 hmac ssax sxpath)
|
||||||
|
|
||||||
|
(test-depends test srfi-1)
|
||||||
|
|
||||||
|
(author "Thomas Hintz")
|
||||||
|
(synopsis "Provides an interface to the Amazon S3 service."))
|
||||||
8
amazon-s3.release-info
Normal file
8
amazon-s3.release-info
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
(repo git "git://github.com/ThomasHintz/chicken-scheme-{egg-name}.git") ; optional
|
||||||
|
|
||||||
|
(uri targz "https://github.com/ThomasHintz/chicken-scheme-{egg-name}/tarball/{egg-release}")
|
||||||
|
(release "1")
|
||||||
|
(release "2")
|
||||||
|
(release "3")
|
||||||
|
(release "4")
|
||||||
|
(release "5")
|
||||||
15
amazon-s3.setup
Normal file
15
amazon-s3.setup
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
; author: Thomas Hintz
|
||||||
|
; email: t@thintz.com
|
||||||
|
; license: bsd
|
||||||
|
|
||||||
|
(compile -s -O2 -d1 amazon-s3.scm -j amazon-s3)
|
||||||
|
(compile -s amazon-s3.import.scm -O2 -d0)
|
||||||
|
(compile -c -O2 -d1 amazon-s3.scm -unit amazon-s3 -j amazon-s3)
|
||||||
|
|
||||||
|
(install-extension
|
||||||
|
'amazon-s3
|
||||||
|
; Files to install for your extension:
|
||||||
|
'("amazon-s3.o" "amazon-s3.so" "amazon-s3.import.so")
|
||||||
|
; Assoc list with properties for your extension:
|
||||||
|
'((version 5)
|
||||||
|
(static "amazon-s3.o"))) ;; for static linking
|
||||||
@@ -2,10 +2,7 @@
|
|||||||
; email: t@thintz.com
|
; email: t@thintz.com
|
||||||
; license: bsd
|
; license: bsd
|
||||||
|
|
||||||
(load "amazon-s3.scm")
|
(use test srfi-1 amazon-s3)
|
||||||
|
|
||||||
(use test srfi-1)
|
|
||||||
(use amazon-s3)
|
|
||||||
|
|
||||||
(define *b* "chicken-scheme-test-bucket")
|
(define *b* "chicken-scheme-test-bucket")
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user