diff options
Diffstat (limited to 'repo')
-rw-r--r-- | repo/system/slang.xibuild | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/repo/system/slang.xibuild b/repo/system/slang.xibuild index a341a89..c2865c5 100644 --- a/repo/system/slang.xibuild +++ b/repo/system/slang.xibuild @@ -9,16 +9,10 @@ DESC="S-Lang is a powerful interpreted language" build () { ./configure --prefix=/usr \ - --sysconfdir=/etc \ - --with-readline=gnu && - make -j1 + --sysconfdir=/etc + make } package () { - make DESTDIR=$PKG_DEST install_doc_dir=/usr/share/doc/slang-$PKG_VER \ - SLSH_DOC_DIR=/usr/share/doc/slang-$PKG_VER/slsh \ - install && - - chmod -v 755 $PKG_DEST/usr/lib/libslang.so.$PKG_VER \ - $PKG_DEST/usr/lib/slang/v2/modules/*.so + make DESTDIR=$PKG_DEST install-all } |