diff options
-rw-r--r-- | .SRCINFO | 12 | ||||
-rw-r--r-- | PKGBUILD | 18 |
2 files changed, 30 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..942bed74de34 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,12 @@ +pkgbase = chicken-fancypants + pkgdesc = Automatic ASCII smart quotes and ligature handling for SXML for Chicken Scheme + pkgver = 0.5 + pkgrel = 1 + url = http://wiki.call-cc.org/eggref/5/fancypants + arch = x86_64 + license = BSD + depends = chicken + depends = chicken-srfi-1 + depends = chicken-srfi-13 + +pkgname = chicken-fancypants diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..3c9292e25c2f --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,18 @@ +pkgname=chicken-fancypants +_name=fancypants +pkgver=0.5 +pkgrel=1 +pkgdesc='Automatic ASCII smart quotes and ligature handling for SXML for Chicken Scheme' +arch=('x86_64') +license=('BSD') +depends=("chicken" "chicken-srfi-1" "chicken-srfi-13") +url='http://wiki.call-cc.org/eggref/5/fancypants' + +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 {} + +} + |