blob: 2d0765cc68046e742fb2f0e5309f1f7ee716d66b (
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
|
# Description: Contient le system Lisp
# URL: http://downloads.sourceforge.net/librep/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on:gdbm
name=librep
version=0.17
release=1
source=( http://downloads.sourceforge.net/$name/$name-$version.tar.gz )
build() {
# build package
cd $name-$version
./configure --prefix=/usr\
--libexecdir=/usr/lib \
--mandir=/usr/share/man\
--infodir=/usr/share/info
make
make DESTDIR=$PKG install
rm $PKG/usr/share/info/dir
}
|