Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Makefile #11

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
10 changes: 9 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,10 @@
*~

Makefile
Makefile.in
aclocal.m4
autom4te.cache/
config.log
config.status
configure
install-sh
missing
15 changes: 15 additions & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
EXTRA_DIST = \
LICENSE.CC \
LICENSE.GPL \
README.md

themedir = $(datadir)/themes/Albatross

install-data-hook:
$(MKDIR_P) $(DESTDIR)$(themedir)
cp -r $(srcdir)/gtk-* $(DESTDIR)$(themedir)
cp -r $(srcdir)/metacity-1 $(DESTDIR)$(themedir)
cp -r $(srcdir)/xfwm4 $(DESTDIR)$(themedir)

uninstall-hook:
test -e $(DESTDIR)$(themedir) && rm -rfv $(DESTDIR)$(themedir)
29 changes: 22 additions & 7 deletions README → README.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,34 @@
Name: Albatross
Summary: Desktop Suite for Xfce.
Albatross
=========
Desktop Suite for Xfce
----------------------
URL: http://shimmerproject.org/projects/albatross/

Copyright 2009–2012 James Schriver, Steve Dodier, Pasi Lallinaho, Mads Rosendahl Hansen

Albatross is dual-licensed as GPLv2 or later and CC-BY-SA 3.0 or later.

Contributors:
* Satyajit Sahoo
* Simon Steinbeiß

Desktop Suite for Xfce.
Albatross was the default theme in Xubuntu 9.10 and 10.04.

The Albatross desktop suite includes:
– GTK+2/3 theme
– Xfwm4 theme
– Metacity/Mutter theme
– Unity support
- GTK+2/3 theme
- Xfwm4 theme
- Metacity/Mutter theme
- Unity support

### Install without admin privileges

```
./autogen.sh --prefix=$HOME/.local
make install
```

### Install for all users

```
./autogen.sh
sudo make install
23 changes: 23 additions & 0 deletions autogen.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
#!/bin/sh
set -e

test -n "$srcdir" || srcdir=$(dirname "$0")
test -n "$srcdir" || srcdir=.

olddir=$(pwd)

cd $srcdir

autoreconf --force --install --symlink --warnings=all

cd "$olddir"

if [ "$NOCONFIGURE" = "" ]; then
$srcdir/configure "$@" || exit 1

if [ "$1" = "--help" ]; then exit 0 else
echo "Now type 'make' to compile $PKG_NAME" || exit 1
fi
else
echo "Skipping configure process."
fi
15 changes: 15 additions & 0 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
AC_INIT([Albatross ], 1.2, [https://github.com/shimmerproject/Albatross/issues],
[Albatross], [http://shimmerproject.org/our-projects/albatross/])
AM_INIT_AUTOMAKE([1.11 foreign subdir-objects tar-ustar no-dist-gzip dist-xz -Wno-portability])
AM_SILENT_RULES([yes])

AC_PREFIX_DEFAULT(/usr)
AC_CONFIG_FILES([Makefile])
AC_OUTPUT

AC_MSG_RESULT([
Albatross $VERSION
========
prefix: ${prefix}

])