wok view uemacs/receipt @ rev 22876

web-applications: localize wikipedia
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Feb 21 18:28:59 2020 +0100 (2020-02-21)
parents 3525dfa8c479
children 3105f866bc3e
line source
1 # SliTaz package receipt.
3 PACKAGE="uemacs"
4 VERSION="20141208"
5 CATEGORY="editors"
6 TAGS="editor"
7 SHORT_DESC="Tiny emacs clone."
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="other"
10 WEB_SITE="httpa://git.kernel.org/pub/scm/editors/uemacs/uemacs.git"
12 TARBALL="$PACKAGE-$VERSION.tar.xz"
13 WGET_URL="https://sourceforge.net/projects/slackbuildsdirectlinks/files/$PACKAGE/$PACKAGE$VERSION.tar.xz"
15 DEPENDS="ncurses"
16 BUILD_DEPENDS="ncurses-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 export LDFLAGS="$LDFLAGS -ltinfo"
22 make
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/bin
30 cp -a $src/em $fs/usr/bin
31 ln -s em $fs/usr/bin/uemacs
32 }