blob: e6e258ef311924314819e04ef7a2edfa653470e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# Maintainer: Andrew O'Neill <andrew at haunted dot sh>
# Contributor: Alexander F Rødseth <xyproto@archlinux.org>
# Contributor: DavidK <david_king@softhome.net>
# Contributor: Lex Black <autumn-wind@web.de>
# Contributor: Roberto Alsina <ralsina@kde.org>
pkgname=afnix
pkgver=3.8.0
pkgrel=3
pkgdesc='Multi-threaded functional programming language'
arch=('x86_64')
url='http://www.afnix.org'
license=('LicenseRef-AFNIX')
depends=('ncurses' 'gcc-libs')
source=("${url}/ftp/afnix-src-${pkgver}.tgz"
"${pkgname}.patch")
sha256sums=('63a8e7e0dc8670a548531d7a78a7922282f6dd10c5fc4526f9c1821e1928c8f4'
'3b306cc3373846d4047f958ec32313890901ebce252c415f6e9beb2f803fe007')
prepare() {
patch -p0 -i ../${pkgname}.patch
}
build() {
cd "${pkgname}-src-${pkgver}"
./cnf/bin/afnix-setup -o --prefix="${pkgdir}/usr"
make
}
package() {
cd "${pkgname}-src-${pkgver}"
make install
install -d "${pkgdir}/usr/share/emacs/site-lisp"
install etc/unx/*.el -t "${pkgdir}/usr/share/emacs/site-lisp"
install -D doc/xml/eul/std-us-legal.xml "${pkgdir}/usr/share/licenses/afnix/LICENSE"
}
|