Skip to content

Commit

Permalink
Initial import
Browse files Browse the repository at this point in the history
  • Loading branch information
mones committed Dec 12, 2007
0 parents commit 132e8b0
Show file tree
Hide file tree
Showing 6 changed files with 1,533 additions and 0 deletions.
676 changes: 676 additions & 0 deletions COPYING

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions ChangeLog
@@ -0,0 +1,3 @@
2007-12-11 mones

* Initial import
34 changes: 34 additions & 0 deletions Makefile
@@ -0,0 +1,34 @@
#
# Clawsker makefile
#

NAME=clawsker
PREFIX=/usr/local
BINDIR=${PREFIX}/bin
DATADIR=${PREFIX}/share
LIBDIR=${PREFIX}/lib/${NAME}
MANDIR=${DATADIR}/man
MAN1DIR=${MANDIR}/man1

all: ${NAME}.1

${NAME}.1:
pod2man ${NAME} > ${NAME}.1

install: all install-dirs
install -m 0755 ${NAME} ${DESTDIR}${BINDIR}
install -m 0644 ${NAME}.1 ${DESTDIR}${MAN1DIR}

install-dirs:
install -d ${DESTDIR}${BINDIR}
install -d ${DESTDIR}${MAN1DIR}

uninstall:
rm -f ${DESTDIR}${BINDIR}/${NAME}
rm -f ${DESTDIR}${MAN1DIR}/${NAME}.1

clean:
rm -f ${NAME}.1 *~

.PHONY: all install install-dirs uninstall clean

1 change: 1 addition & 0 deletions NEWS
@@ -0,0 +1 @@
Initial release
31 changes: 31 additions & 0 deletions README
@@ -0,0 +1,31 @@

Clawsker - A Claws Mail Tweaker
-------------------------------

Clawsker is a Perl-GTK2 applet to edit hidden preferences for Claws Mail.
Claws Mail is a fast and lightweight Mail User Agent by the Claws Mail Team.

Dependencies
------------

Perl - http://www.perl.com
GTK+2 bindings for Perl - http://gtk2-perl.sourceforge.net
Claws Mail - http://www.claws-mail.org

Install
-------

After downloading the tarball:

tar xzf clawsker-VERSION.tar.gz
cd clawsler-VERSION
make install

Replace VERSION with the actual version number of the tarball.

Default install is under /usr/local prefix. If you want to install in another
location (for example /usr) replace last line with:

make install PREFIX=/usr


0 comments on commit 132e8b0

Please sign in to comment.