diff options
author | Junker | 2024-01-02 21:49:52 +0700 |
---|---|---|
committer | Junker | 2024-01-02 21:49:52 +0700 |
commit | a01ff2d154aa6343f070bf5d7986c0337202527d (patch) | |
tree | 241c5a0badd95f032972fdba7424ec7c03de95a7 | |
download | aur-chicken-srfi-209.tar.gz |
main commit
-rw-r--r-- | .SRCINFO | 16 | ||||
-rw-r--r-- | PKGBUILD | 18 |
2 files changed, 34 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..2cb71b038143 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,16 @@ +pkgbase = chicken-srfi-209 + pkgdesc = SRFI 209: Enums and enum sets for Chicken Scheme + pkgver = 1.3.1 + pkgrel = 1 + url = http://wiki.call-cc.org/eggref/5/srfi-209 + arch = x86_64 + license = MIT + depends = chicken + depends = chicken-srfi-1 + depends = chicken-srfi-69 + depends = chicken-srfi-113 + depends = chicken-srfi-128 + depends = chicken-srfi-178 + depends = chicken-typed-records + +pkgname = chicken-srfi-209 diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..c9baad6321de --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,18 @@ +pkgname=chicken-srfi-209 +_name=srfi-209 +pkgver=1.3.1 +pkgrel=1 +pkgdesc='SRFI 209: Enums and enum sets for Chicken Scheme' +arch=('x86_64') +license=('MIT') +depends=("chicken" "chicken-srfi-1" "chicken-srfi-69" "chicken-srfi-113" "chicken-srfi-128" "chicken-srfi-178" "chicken-typed-records") +url='http://wiki.call-cc.org/eggref/5/srfi-209' + +build() { + CHICKEN_INSTALL_REPOSITORY=${srcdir} CHICKEN_INSTALL_PREFIX=${srcdir} chicken-install -no-install-dependencies $_name:$pkgver +} +package() { + install -d ${pkgdir}/usr/lib/chicken/11 + find ${srcdir} -maxdepth 1 -type f -exec cp -t ${pkgdir}/usr/lib/chicken/11 {} + +} + |