milis/talimatname/temel/nano/talimat

28 lines
644 B
Plaintext
Raw Normal View History

2016-02-24 01:27:23 +01:00
# Description: A simple text editor which aims to replace Pico, the default editor in the Pine package.
# URL: http://www.nano-editor.org/
2016-03-20 02:15:25 +01:00
# Packager: milisarge@gmail.com
2016-02-24 01:27:23 +01:00
name=nano
version=2.5.2
release=1
2016-03-26 02:53:26 +01:00
#PAKET_LOKAL="hepsi"
2016-02-24 01:27:23 +01:00
source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr \
--sysconfdir=/etc \
--enable-utf8 \
--enable-color \
--enable-multibuffer \
--enable-nanorc \
--docdir=/usr/share/doc/nano-$version \
--disable-x
make
make DESTDIR=$PKG install
mkdir -p $PKG/etc/nano
install -v -m644 -D doc/nanorc.sample $PKG/etc/nano/nanorc.sample
rm $PKG/usr/share/info/dir
}