Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
65 changes: 18 additions & 47 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,49 +1,20 @@
# http://www.gnu.org/software/automake

Makefile
Makefile.in
/ar-lib
/mdate-sh
/py-compile
/test-driver
/ylwrap

# http://www.gnu.org/software/autoconf

aclocal.m4
autom4te.cache
/autoscan.log
/autoscan-*.log
/aclocal.m4
/compile
/config.guess
/config.h.in
/config.log
/config.status
/config.sub
/configure
/configure.scan
/depcomp
/install-sh
/missing
/stamp-h1

# https://www.gnu.org/software/libtool/

/ltmain.sh

# http://www.gnu.org/software/texinfo

/texinfo.tex

# http://www.gnu.org/software/m4/

m4/libtool.m4
m4/ltoptions.m4
m4/ltsugar.m4
m4/ltversion.m4
m4/lt~obsolete.m4

# Generated Makefile
# (meta build system like autotools,
# can automatically generate from config.status script
# (which is called by configure script))
Makefile
compile
config.log
config.status
config.h
depcomp
install-sh
missing
stamp-h1
*.gmo
src/*.o
src/leafpad
src/.deps
data/icons/*/.deps
data/icons/*/*.o
po/POTFILES
po/stamp-it
Empty file modified ABOUT-NLS
100644 → 100755
Empty file.
Empty file modified AUTHORS
100644 → 100755
Empty file.
Empty file modified COPYING
100644 → 100755
Empty file.
Empty file modified ChangeLog
100644 → 100755
Empty file.
461 changes: 302 additions & 159 deletions INSTALL
100644 → 100755

Large diffs are not rendered by default.

7 changes: 5 additions & 2 deletions Makefile.am
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
SUBDIRS = src data po

EXTRA_DIST = \
intltool-extract.in intltool-merge.in intltool-update.in
EXTRA_DIST =

# Clean all build artifacts in the build directory
clean-local:
find . -mindepth 1 -delete
Empty file modified NEWS
100644 → 100755
Empty file.
17 changes: 10 additions & 7 deletions README
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,19 @@ Installation
============

Leafpad requires GTK+-2.x.x libraries.
Printing feature requires libgnomeprintui-2.2 optionally.

Simple install procedure:
Build procedure:

$ tar xzvf leafpad-x.x.x.tar.gz # unpack the sources
$ cd leafpad-x.x.x # change to the toplevel directory
$ ./configure # run the `configure' script
$ make # build Leafpad
$ git clone https://github.com/Alhkxsj/leafpad.git
$ cd leafpad
$ autoreconf -i
$ mkdir build && cd build
$ ../configure
$ make
$ make install
$ termux: make install prefix=$PREFIX
[ Become root if necessary ]
# make install-strip # install Leafpad
# make install-strip

See the file 'INSTALL' for more detailed information.

Expand Down
95 changes: 95 additions & 0 deletions config.h.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
/* config.h.in. Generated from configure.ac by autoheader. */

/* Define if GtkFileChooser is enabled. */
#undef ENABLE_CHOOSER

/* Define if Emacs key theme is enabled. */
#undef ENABLE_EMACS

/* always defined to indicate that i18n is enabled */
#undef ENABLE_NLS

/* Define if print feature is enabled. */
#undef ENABLE_PRINT

/* Define to 1 if you have the 'bind_textdomain_codeset' function. */
#undef HAVE_BIND_TEXTDOMAIN_CODESET

/* Define to 1 if you have the Mac OS X function CFLocaleCopyCurrent in the
CoreFoundation framework. */
#undef HAVE_CFLOCALECOPYCURRENT

/* Define to 1 if you have the Mac OS X function CFPreferencesCopyAppValue in
the CoreFoundation framework. */
#undef HAVE_CFPREFERENCESCOPYAPPVALUE

/* Define to 1 if you have the 'dcgettext' function. */
#undef HAVE_DCGETTEXT

/* Define if the GNU gettext() function is already present or preinstalled. */
#undef HAVE_GETTEXT

/* Define to 1 if you have the <inttypes.h> header file. */
#undef HAVE_INTTYPES_H

/* Define if your <locale.h> file defines LC_MESSAGES. */
#undef HAVE_LC_MESSAGES

/* Define to 1 if you have the <locale.h> header file. */
#undef HAVE_LOCALE_H

/* Define to 1 if you have the <stdint.h> header file. */
#undef HAVE_STDINT_H

/* Define to 1 if you have the <stdio.h> header file. */
#undef HAVE_STDIO_H

/* Define to 1 if you have the <stdlib.h> header file. */
#undef HAVE_STDLIB_H

/* Define to 1 if you have the <strings.h> header file. */
#undef HAVE_STRINGS_H

/* Define to 1 if you have the <string.h> header file. */
#undef HAVE_STRING_H

/* Define to 1 if you have the <sys/stat.h> header file. */
#undef HAVE_SYS_STAT_H

/* Define to 1 if you have the <sys/types.h> header file. */
#undef HAVE_SYS_TYPES_H

/* Define to 1 if you have the <unistd.h> header file. */
#undef HAVE_UNISTD_H

/* Define the location where the catalogs will be installed */
#undef LOCALEDIR

/* Name of package */
#undef PACKAGE

/* Define to the address where bug reports for this package should be sent. */
#undef PACKAGE_BUGREPORT

/* Define to the full name of this package. */
#undef PACKAGE_NAME

/* Define to the full name and version of this package. */
#undef PACKAGE_STRING

/* Define to the one symbol short name of this package. */
#undef PACKAGE_TARNAME

/* Define to the home page for this package. */
#undef PACKAGE_URL

/* Define to the version of this package. */
#undef PACKAGE_VERSION

/* Define to 1 if all of the C89 standard headers exist (not just the ones
required in a freestanding environment). This macro is provided for
backward compatibility; new code need not use it. */
#undef STDC_HEADERS

/* Version number of package */
#undef VERSION
Loading