milis/talimatname/genel/joe/talimat

25 lines
655 B
Plaintext
Raw Normal View History

2017-01-31 02:35:21 +01:00
# Description: Joe's own editor, is a small text editor capable of emulating WordStar, Pico, and Emacs.
# URL: http://downloads.sourceforge.net/joe-editor
# Packager: milisarge
# Depends on:
2016-02-24 01:27:23 +01:00
name=joe
version=4.1
release=1
source=(http://downloads.sourceforge.net/joe-editor/$name-$version.tar.gz)
build () {
cd $name-$version
2017-01-31 02:35:21 +01:00
2016-02-24 01:27:23 +01:00
./configure --prefix=/usr \
--sysconfdir=/etc \
2017-01-31 02:35:21 +01:00
--docdir=/usr/share/doc/joe-4.1
2016-02-24 01:27:23 +01:00
make
make DESTDIR=$PKG install
2017-01-31 02:35:21 +01:00
install -vm 755 joe/util/{stringify,termidx,uniproc} $PKG/usr/bin
install -vdm755 $PKG/usr/share/joe/util
2016-02-24 01:27:23 +01:00
install -vm 644 joe/util/{*.txt,README} $PKG/usr/share/joe/util
}